Update style.css
Browse files
style.css
CHANGED
@@ -7,11 +7,29 @@ body {
|
|
7 |
top: 50%;
|
8 |
left: 50%;
|
9 |
transform: translateX(-50%) translateY(-50%);
|
10 |
-
color: 73b66f;
|
11 |
font-size: 240px;
|
12 |
font-family: Stencil;
|
13 |
letter-spacing: 7px;
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
|
|
|
|
|
|
|
|
|
|
16 |
|
|
|
|
|
17 |
}
|
|
|
7 |
top: 50%;
|
8 |
left: 50%;
|
9 |
transform: translateX(-50%) translateY(-50%);
|
10 |
+
color: #73b66f;
|
11 |
font-size: 240px;
|
12 |
font-family: Stencil;
|
13 |
letter-spacing: 7px;
|
14 |
+
}
|
15 |
+
|
16 |
+
.menu {
|
17 |
+
display: none;
|
18 |
+
position: absolute;
|
19 |
+
top: 60%;
|
20 |
+
left: 50%;
|
21 |
+
transform: translateX(-50%);
|
22 |
+
background: #333;
|
23 |
+
padding: 10px;
|
24 |
+
border-radius: 10px;
|
25 |
+
}
|
26 |
|
27 |
+
.color-option {
|
28 |
+
color: white;
|
29 |
+
padding: 10px;
|
30 |
+
cursor: pointer;
|
31 |
+
}
|
32 |
|
33 |
+
.color-option:hover {
|
34 |
+
background: #444;
|
35 |
}
|