-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (50 loc) · 932 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
51
52
53
body {
background-color: grey;
}
#container {
display: flex;
justify-content: center;
flex-wrap: wrap;
height: 50vh;
background-color: grey;
}
img {
width: 200px;
height: 200px;
}
.finish-animation {
display: flex;
margin: 0 auto;
height: 100vh;
width: 100vh;
}
.well-done {
display: flex;
justify-content: center;
}
@media only screen and (max-width: 600px) {
body {
background-color: lightblue;
}
#container {
display: flex;
justify-content: center;
flex-wrap: wrap;
width: 95vh;
background-color: grey;
}
img {
width: 45%;
height: 32%;
}
.finish-animation {
display: flex;
margin: 0 auto;
height: 100vh;
width: 100vh;
}
.well-done {
display: flex;
justify-content: center;
}
}