-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 718 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 718 Bytes
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
.dial {
height: 400px;
width: 400px;
}
.timer {
position: relative;
display: inline-block;
}
* {
font: inherit;
}
body {
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans',
'Droid Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.timer input {
display: block;
border: none;
width: 240px;
font-size: 90px;
text-align: center;
}
.timer button {
border: none;
font-size: 36px;
cursor: pointer;
}
.timer button:focus {
outline: none;
}
.timer input:focus {
outline: none;
}
.controls {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}