-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (75 loc) · 1.32 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* Box sizing rules */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Remove default margin */
* {
margin: 0;
padding: 0;
font: inherit;
}
html,
body {
height: 100%;
font-family: 'Roboto', arial;
display: flex;
flex-direction: column;
justify-content: center;
background-color: #282828;
}
p {
text-align: center;
color: #fff;
}
.input {
display: grid;
justify-content: center;
margin-top: 10px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
margin: 50px;
}
.clock {
height: 50px;
width: 150px;
color: #1d1e22;
border-radius: 5px;
cursor: pointer;
background-color: #fff;
}
.clock h2 {
font-size: 24px;
font-weight: 700;;
display: flex;
justify-content: center;
align-items: center;
}
.button {
display: flex;
justify-content: center;
align-items: center;
width: 100px;
padding: 5px;
cursor: pointer;
border-radius: 5px;
border: none;
}
.button:disabled {
cursor: default;
background-color: #b3b3b3;
}
.black {
/* background-color: #181818; if inactive */
background-color: #000;
}
.black h2 {
color: #fff;
/* color: #404040; if inactive */
}