-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (72 loc) · 1.48 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
--_color: #49a0dd;
/* CSS PRIVATE Variables */
font-family: Roboto, sans-serif;
width: 12rem;
padding: 10px;
box-shadow: rgba(126, 205, 205, 0.4) 0px 0px 0px 2px, rgba(126, 205, 205, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
#display {
display: none;
}
#time {
display: flex;
gap: 10px;
justify-content: center;
color: var(--_color);
margin-bottom: 5px;
}
#time>h1:nth-of-type(1)::after,
#time>h1:nth-of-type(2)::after {
content: ":";
}
#time>h1:nth-of-type(3)::after {
content: "s";
font-family: Roboto, sans-serif;
color: rgba(141, 141, 141, 0.644);
font-size: 15px;
}
#btns {
display: grid;
grid-auto-flow: column;
place-items: center;
}
button {
padding: 4px 8px;
cursor: pointer;
border-width: 4px;
background-color: #665f71;
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
}
button:not(:disabled):active {
transform: scale(0.96);
}
#inputs {
display: grid;
gap: 10px;
}
#timer-inputs {
display: flex;
gap: 5px;
}
#timer-inputs>* {
text-align: center;
padding: 2px 0px;
font-size: 17px;
text-transform: uppercase;
width: 55px;
outline: none;
border: none;
border-bottom: 3px solid var(--_color);
}
#timer-inputs>*::placeholder {
text-align: center;
}