-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 678 Bytes
/
style.css
File metadata and controls
43 lines (43 loc) · 678 Bytes
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
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: aqua;
}
.main{
margin: 20px auto;
max-width: 1100px;
background-color: white;
padding:30px 2%;
}
.main h2{
text-align: center;
}
.pokemon-boxes{
display: flex;
margin: 20px 0;
flex-wrap: wrap;
}
.pokemon-box{
border-radius: 10px;
width:29%;
margin-right: 1%;
margin:30px 2%;
background-color :rgb(230, 230, 230);
}
.pokemon-box img{
width:100%;
}
.pokemon-box p{
color:black;
font-size: 23px;
text-align: center;
padding:10px 0;
}
@media screen and (max-width: 768px){
.pokemon-box{
width: 100%;
}
}