-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.css
62 lines (61 loc) · 983 Bytes
/
app.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
@charset 'UTF-8';
html {
font-family: sans-serif;
touch-action: manipulation;
}
.container {
padding: 15px;
max-width: 400px;
margin: 0 auto;
text-align: center;
font-size: 16px;
}
.title {
font-size: 20px;
margin: 10px 0 20px;
}
.btn-tap {
width: 200px;
height: 200px;
border-radius: 50%;
color: #fff;
background-color: #a0ce00;
border: none;
outline: none;
font-size: 20px;
margin-bottom: 30px;
cursor: pointer;
}
.btn-tap:disabled {
background-color: #ddd;
color: #aaa;
}
.btn-tap span {
font-size: 60px;
}
.btn {
display: inline-block;
width: min(100%, 240px);
margin: 30px 0 0;
padding: 15px;
border: none;
border-radius: 10px;
background-color: #54bbc1;
font-size: 18px;
color: #fff;
font-weight: bold;
cursor: pointer;
}
.btn-tw {
background-color: #46a1eb;
display: none;
}
.btn + .btn {
margin-top: 20px;
}
.time span {
display: inline-block;
width: 50px;
font-size: 20px;
font-weight: bold;
}