-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (81 loc) · 1.42 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
.timer {
display: flex;
justify-content: center;
font-family: "RecursoSansRegular";
font-weight: normal;
font-style: normal;
font-size: 14px;
}
.timer-body {
min-width: 210px;
min-height: 210px;
background:#05E3EE;
padding: 20px 25px;
border-radius: 50%;
}
#hourglass {
max-width: auto;
max-height: 35px;
padding-top: 10px;
padding-left: 5px;
}
#timer-header {
display: flex;
justify-content: center;
margin: 0;
margin-bottom: -3px;
}
.timer-current {
display: flex;
justify-content: center;
margin: 0;
margin-bottom: -4px;
}
#current-time {
padding: 2px;
background-color: azure;
margin-left: 4px;
border-radius: 4%;
font-family: "UnifontMedium";
font-weight: normal;
font-style: normal;
}
.timer-setting h3 {
display: flex;
justify-content: center;
margin-bottom: 10px;
}
.timer-input {
display: flex;
justify-content: center;
margin-bottom: -3px;
}
#number {
width: 100px;
font-family: inherit;
}
#start-button, #reset-button {
margin-left: 2px;
font-family: inherit;
}
.color-button {
font-family: inherit;
display: flex;
justify-content: center;
margin: auto;
padding-left: 1px;
padding-right: 1px;
}
.show-time {
display: flex;
justify-content: center;
}
#time-elapsed {
padding: 2px;
background-color: azure;
margin-left: 1px;
border-radius: 4%;
font-family: "UnifontMedium";
font-weight: normal;
font-style: normal;
}