-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (71 loc) · 1.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
72
@import url('https://fonts.googleapis.com/css2?family=Asap:wght@700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #24272E;
font-family: Asap,sans-serif;
}
header{
background: white;
padding: 20px;
}
header > h1{
text-align: center;
color: black;
}
.score-board{
margin: 20px auto;
border: 3px solid white;
width: 200px;
color: white;
font-size: 30px;
border-radius: 4px;
text-align:center;
padding: 20px 10px;
position: relative;
}
.badge{
background-color: #cc0000;
font-size: 20px;
padding:2px 4px;
}
#user-label{
position:absolute;
top:27px;
left:-30px;
}
#comp-label{
position:absolute;
top:27px;
left:170px;
}
.result{
text-align: center;
font-size: 40px;
color: white;
}
.choices{
text-align: center;
margin: 50px 0px;
}
.choice{
display: inline-block;
border: 2px solid white;
border-radius: 50%;
margin:20px;
padding:10px;
transition: all 0.3s ease;
}
.choice:hover{
background:#99ccff;
cursor:pointer;
}
#action-message{
text-align:center;
margin:20px;
font-size: 20px;
color:white;
}