TIMBOVILL commited on
Commit
6b06e0b
·
verified ·
1 Parent(s): 111554a

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +20 -2
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
  }