-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (78 loc) · 1.82 KB
/
style.css
File metadata and controls
87 lines (78 loc) · 1.82 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
margin: 0px;
padding: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color: #253031;
color: white;
}
#display {
width: auto;
height: auto;
background-color: #457EAC;
padding: 15px 40px 40px 40px;
border-radius: 10px;
text-align: center;
margin-bottom: 50px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5)
}
#options {
display: grid;
grid-template-columns: repeat(2, 1fr);
row-gap: 15px;
column-gap: 15px;
}
#question, #start {
font-size: 1.5em;
background-color: #2F97C1;
padding: 16px 25px 16px 25px;
border-radius: 50px;
max-width: 700px;
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5)
}
.option {
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
padding: 6px;
border: none;
border-radius: 15px;
background-color: #9191E9;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5)
}
.option:hover {
background-color: #C2AFF0;
}
#score-board {
height: auto;
width: auto;
background-color: #457EAC;
display: grid;
grid-template-columns: repeat(3, 1fr);
column-gap: 25px;
padding: 25px;
border-radius: 30px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5)
}
.counter {
display: flex;
flex-direction: column;
height: auto;
width: auto;
background-color: #2F97C1;
padding: 15px;
text-align: center;
border-radius: 15px;
box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5)
}
.counter p{
margin: 0px;
}
.counter-number {
font-weight: 600;
font-size: 4em;
margin: 0px;
}