Update style.css
Browse files
style.css
CHANGED
@@ -9,10 +9,6 @@ html, body {
|
|
9 |
background: black;
|
10 |
}
|
11 |
|
12 |
-
body {
|
13 |
-
width: 100%;
|
14 |
-
}
|
15 |
-
|
16 |
.clock {
|
17 |
color: #73b66f;
|
18 |
font-size: 180px;
|
@@ -34,7 +30,7 @@ body {
|
|
34 |
color: white;
|
35 |
display: flex;
|
36 |
flex-direction: column;
|
37 |
-
justify-content:
|
38 |
align-items: center;
|
39 |
text-align: center;
|
40 |
}
|
@@ -45,29 +41,23 @@ body {
|
|
45 |
|
46 |
.settings {
|
47 |
display: flex;
|
48 |
-
flex-direction:
|
49 |
-
|
50 |
-
|
51 |
-
width: 100%;
|
52 |
}
|
53 |
|
54 |
-
.color-options, .font-options, .toggle-options, .spacing-options
|
55 |
-
margin:
|
56 |
-
display: flex;
|
57 |
-
flex-direction: column;
|
58 |
-
align-items: center;
|
59 |
}
|
60 |
|
61 |
-
.color-option, .font-option, .toggle-option
|
62 |
padding: 10px;
|
63 |
cursor: pointer;
|
64 |
border-radius: 10px;
|
65 |
-
background: #444;
|
66 |
-
margin-bottom: 5px;
|
67 |
}
|
68 |
|
69 |
-
.color-option:hover, .font-option:hover, .toggle-option:hover
|
70 |
-
background: #
|
71 |
}
|
72 |
|
73 |
button {
|
@@ -77,26 +67,18 @@ button {
|
|
77 |
background: #555;
|
78 |
border: none;
|
79 |
color: white;
|
|
|
80 |
border-radius: 20px;
|
81 |
-
margin: 10px;
|
82 |
}
|
83 |
|
84 |
button:hover {
|
85 |
background: #777;
|
86 |
}
|
87 |
|
88 |
-
.menu-buttons {
|
89 |
-
display: flex;
|
90 |
-
flex-direction: row;
|
91 |
-
justify-content: center;
|
92 |
-
width: 100%;
|
93 |
-
}
|
94 |
-
|
95 |
input[type="checkbox"] {
|
96 |
margin-right: 10px;
|
97 |
}
|
98 |
|
99 |
-
input[type="range"]
|
100 |
-
width:
|
101 |
-
margin: 5px 0;
|
102 |
}
|
|
|
9 |
background: black;
|
10 |
}
|
11 |
|
|
|
|
|
|
|
|
|
12 |
.clock {
|
13 |
color: #73b66f;
|
14 |
font-size: 180px;
|
|
|
30 |
color: white;
|
31 |
display: flex;
|
32 |
flex-direction: column;
|
33 |
+
justify-content: center;
|
34 |
align-items: center;
|
35 |
text-align: center;
|
36 |
}
|
|
|
41 |
|
42 |
.settings {
|
43 |
display: flex;
|
44 |
+
flex-direction: row;
|
45 |
+
justify-content: space-around;
|
46 |
+
width: 80%;
|
|
|
47 |
}
|
48 |
|
49 |
+
.color-options, .font-options, .toggle-options, .spacing-options {
|
50 |
+
margin: 0 20px;
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
+
.color-option, .font-option, .toggle-option {
|
54 |
padding: 10px;
|
55 |
cursor: pointer;
|
56 |
border-radius: 10px;
|
|
|
|
|
57 |
}
|
58 |
|
59 |
+
.color-option:hover, .font-option:hover, .toggle-option:hover {
|
60 |
+
background: #444;
|
61 |
}
|
62 |
|
63 |
button {
|
|
|
67 |
background: #555;
|
68 |
border: none;
|
69 |
color: white;
|
70 |
+
margin-top: 20px;
|
71 |
border-radius: 20px;
|
|
|
72 |
}
|
73 |
|
74 |
button:hover {
|
75 |
background: #777;
|
76 |
}
|
77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
input[type="checkbox"] {
|
79 |
margin-right: 10px;
|
80 |
}
|
81 |
|
82 |
+
input[type="range"] {
|
83 |
+
width: 100%;
|
|
|
84 |
}
|