-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
53 lines (44 loc) · 822 Bytes
/
styles.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
.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;
}