-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (66 loc) · 1 KB
/
styles.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background: white;
padding: 20px;
}
body {
background: #24272e;
}
header > h1 {
text-align: center;
font-family: Asap, sans-serif;
}
.score-board {
border: 3px solid white;
width: 200px;
margin: 20px auto;
color: white;
font-size: 46px;
padding: 15px 20px;
text-align: center;
position: relative;
}
.badge {
background: #e2584d;
font-size: 14px;
width: 50px;
padding: 2px;
}
#user-label {
position: absolute;
top: 30px;
left: -30px;
}
#comp-label {
position: absolute;
top: 30px;
right: -30px;
}
.result {
font-size: 40px;
color: white;
text-align: center;
font-family: Asap, sans-serif;
}
.choices {
text-align: center;
color: white;
font-family: Asap, sans-serif;
margin: 20px;
}
.choice {
border: 4px solid white;
border-radius: 50px;
padding: 10px;
margin: 0px 20px;
display: inline-block;
}
.choice:hover {
transition: all 0.5s ease;
cursor: pointer;
background: red;
}