-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (45 loc) · 758 Bytes
/
styles.css
File metadata and controls
46 lines (45 loc) · 758 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
44
45
46
body{
background-image: url("pkmn.jpg");
background-size: cover;
}
h1{
text-align: center;
}
#pokemonMoves{
width: 450px;
height: 250px;
overflow: auto;
margin-right: auto;
}
img{
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.header {
text-align: center;
}
.flex-container {
display: flex;
}
.flex-child {
flex: 1;
border: 2px solid rgb(4, 0, 255);
}
.flex-child:first-child {
margin-right: auto;
margin-left: auto;
}
.footer-repository {
background-color: #2a8ebd;
text-align:center;
}
@media only screen and (max-width: 600px) {
#pokemonMoves{
width: 250px;
height: 150px;
overflow: auto;
margin-right: auto;
}
}