-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (64 loc) · 915 Bytes
/
style.css
File metadata and controls
83 lines (64 loc) · 915 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
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
72
73
74
75
76
77
78
79
80
81
82
83
@import url('https://fonts.googleapis.com/css?family=Comfortaa:300,400,700');
body {
font-family: "Comfortaa", sans-serif;
}
.options img,
.options div {
display: inline;
}
.options div {
margin: 0 2rem;
}
.options div:hover img {
transform: scale(1.2);
}
.options img {
height: 10rem;
}
.center-text {
text-align: center;
}
.battle-area div,
.battle-area img {
display: inline-block;
}
.section {
margin: 4rem 0;
}
.human {
margin-right: 5rem;
}
.cpu {
margin-left: 5rem;
}
.battle-area img {
height: 20rem;
}
.vs {
display: inline-block;
font-size: 5rem;
margin: auto;
}
.results {
text-align: center;
}
@media(max-width: 768px) {
.battle-area img {
height: 7rem;
}
.cpu {
margin-left: 1rem;
}
.human {
margin-right: 1rem;
}
.vs {
font-size: 1rem;
}
.options img {
height: 5rem;
}
.options div {
margin: 0 1rem;
}
}