-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 888 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
body{
background-color: darkslateblue;
color: white;
margin: 0;
font-family: 'ZCOOL KuaiLe', cursive;
background: rgb(40,227,219);
background: linear-gradient(90deg, rgba(40,227,219,1) 0%, rgba(253,214,29,1) 50%, rgba(252, 69, 93, 0.868) 100%);
}
.container{
padding: 40px;
margin: 0 auto;
}
h1{
text-transform: uppercase;
text-align: center;
font-size: 55px;
}
#pokedex{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
grid-gap: 20px;
}
.card{
list-style: none;
padding: 40px;
background-color: #f4f4f4b4;
color: #222222;
text-align: center;
}
.card-title{
text-transform: capitalize;
margin-bottom: 0;
font-size: 32px;
font-weight: normal;
}
.card-subtile{
margin-top: 5px;
color: #666666;
font-weight: lighter;
}
.card-image{
height: 180px;
}