-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
105 lines (92 loc) · 1.71 KB
/
style.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
html,body {
margin: 0px;
padding: 0px;
font-family: Arial, Helvetica, sans-serif;
}
*{
user-select: none;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#counter {
width: 100%;
height: 100%;
position: absolute;
background-color: teal;
text-align: center;
}
#question {
width: 100%;
height: 100%;
position: absolute;
background-color:#0a3a35;
text-align: center;
}
#question #q {
color: white;
font-size: 60px;
position: relative;
top: 50%;
transform: translateY(-50%);
}
#thank {
width: 100%;
height: 100%;
position: absolute;
background-color:#0f4f9d;
text-align: center;
}
#thank #u {
color: white;
font-size: 120px;
position: relative;
top: 50%;
transform: translateY(-50%);
}
#counter #number {
font-size: 260px;
color: white;
position: relative;
text-align: center;
top: 50%;
transform: translateY(-50%);
}
#question #number {
font-size: 200px;
color: white;
position: relative;
text-align: center;
margin-top: 15%;
}
#action {
color: black;
background-color: #ffd344;
border: none;
padding: 20px;
font-size: 36px;
border-radius: 0px;
position: relative;
text-align: center;
top: 50%;
transform: translateY(-50%);
}
.actiond {
position: fixed !important;
top: 70% !important;
transform: translateY(-70%) !important;
left: 50% !important;
transform: translateX(-50%) !important;
}
#devby {
position: fixed;
bottom: 20px;
right: 20px;
color: white;
font-size: 18px;
}
#source {
position: fixed;
bottom: 20px;
left: 20px;
color: white;
font-size: 18px;
}