-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
74 lines (71 loc) · 1.6 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
@font-face {
font-family: 'BPmono';
src: url(font/BPmono/BPmono.ttf) format('truetype');
/*font-family: 'JosefinSans-Regular';*/
/*src: url(font/JosefinSans/JosefinSans-Regular.ttf) format('truetype');*/
}
html {
width: 100%;
height: 100%;
perspective: 900px;
overflow-y: scroll;
background-color: #dce7eb;
font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
#timer-number {
font-family: 'BPmono', monospace;
font-size: 32px;
height: 2em;
display: flex;
align-items: center;
justify-content: center
}
.button-wrapper {
display: flex;
align-items: center;
justify-content: center
}
.button-color-blue {
background: #4676d7;
color: #fff;
}
.button-color-blue:hover {
background: #1d49aa;
}
.button-color-red {
background: #d74646;
color: #fff;
}
.button-color-red:hover {
background: #aa1d1d;
}
.button {
-webkit-appearance: none;
appearance: none;
display: inline-block;
min-width: 100px;
border: 0;
border-radius: 5px;
padding: 10px 16px;
font-size: 1rem;
margin: 4px;
text-decoration: none;
cursor: pointer;
-webkit-transition: 0.3s ease-out;
transition: 0.3s ease-out;
}
.button:focus {
outline: none;
box-shadow: 0 0 0 4px #cbd6ee;
}
@media (prefers-color-scheme: dark) {
html {
background: #333333;
color: white; }
}
@media (prefers-color-scheme: light) {
html {
background: #dce7eb;
color: black;
}
}