-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (98 loc) · 1.47 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
106
107
108
109
110
111
112
113
114
body {
margin: 0;
font-family: "Potta One", cursive;
color: white;
user-select: none;
}
.scrim {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.8);
gap: 0.5rem;
padding: 0 1rem;
}
.title {
margin: 0;
font-size: 1rem;
}
.credit {
font-size: 0.75rem;
}
.description {
font-size: 1.5rem;
padding: 0;
text-align: center;
}
.notice {
font-size: 1rem;
}
.button {
border: none;
font-weight: bold;
font-family: "Potta One", cursive;
font-size: 1.5rem;
border-radius: 0.5rem;
padding: 0.5rem 1rem;
cursor: pointer;
color: black;
background-color: white;
text-decoration: none;
}
.header {
box-sizing: border-box;
position: absolute;
top: 0;
left: 0;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 0.5rem 1rem;
font-size: 1rem;
}
#timer {
position: absolute;
bottom: 1rem;
left: 1rem;
font-size: 2rem;
}
#count {
position: absolute;
bottom: 1rem;
right: 1rem;
font-size: 2rem;
}
#start-view {
display: none;
}
#start-view.--active {
display: flex;
}
#result-view {
display: none;
}
#result-view.--active {
display: flex;
}
#tap-target {
cursor: pointer;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
}
#tap-target.--active {
display: block;
}
.credit a {
color: white;
}