-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (58 loc) · 1 KB
/
Copy pathstyle.css
File metadata and controls
71 lines (58 loc) · 1 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@import url(//fonts.googleapis.com/css?family=Staatliches);
body{
font-family: 'Staatliches';
}
.images{
display: flex;
justify-content: space-around;
margin: 15px;
}
.image{
width: 500px;
height: auto;
border-style: solid;
margin: 5px;
transition: all 0.4s;
}
.image-container{
text-align: center;
font-size: 64px;
}
.btn-container {
display: flex;
justify-content: center;
margin: 24px;
}
.start-game-btn{
font-size: large;
}
.container{
align-items: center;
}
.result{
display: flex;
justify-content: space-evenly;
font-size: 32px;
align-items: center;
}
.score{
display: flex;
justify-content: center;
font-size: 64px;
margin: 48px;
}
.playing-field{
display: block;
text-align: center;
align-items: center;
}
.show-round-result{
display: flex;
justify-content: center;
font-size: 80px;
}
.fighting{
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 10px #ffc600;
}