TIMBOVILL commited on
Commit
dda1d72
·
verified ·
1 Parent(s): faa54ab

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +13 -5
style.css CHANGED
@@ -30,7 +30,7 @@ html, body {
30
  color: white;
31
  display: flex;
32
  flex-direction: column;
33
- justify-content: center;
34
  align-items: center;
35
  text-align: center;
36
  }
@@ -41,24 +41,25 @@ html, body {
41
 
42
  .settings {
43
  display: flex;
44
- flex-direction: row;
45
  flex-wrap: wrap;
46
  justify-content: space-around;
47
  width: 80%;
48
  }
49
 
50
  .color-options, .font-options, .toggle-options, .spacing-options, .size-options, .background-options {
51
- margin: 20px;
52
  }
53
 
54
  .color-option, .font-option, .toggle-option, .background-option {
55
  padding: 10px;
56
  cursor: pointer;
57
  border-radius: 10px;
 
 
58
  }
59
 
60
  .color-option:hover, .font-option:hover, .toggle-option:hover, .background-option:hover {
61
- background: #444;
62
  }
63
 
64
  button {
@@ -68,14 +69,21 @@ button {
68
  background: #555;
69
  border: none;
70
  color: white;
71
- margin-top: 20px;
72
  border-radius: 20px;
 
73
  }
74
 
75
  button:hover {
76
  background: #777;
77
  }
78
 
 
 
 
 
 
 
 
79
  input[type="checkbox"] {
80
  margin-right: 10px;
81
  }
 
30
  color: white;
31
  display: flex;
32
  flex-direction: column;
33
+ justify-content: space-around;
34
  align-items: center;
35
  text-align: center;
36
  }
 
41
 
42
  .settings {
43
  display: flex;
 
44
  flex-wrap: wrap;
45
  justify-content: space-around;
46
  width: 80%;
47
  }
48
 
49
  .color-options, .font-options, .toggle-options, .spacing-options, .size-options, .background-options {
50
+ margin: 10px;
51
  }
52
 
53
  .color-option, .font-option, .toggle-option, .background-option {
54
  padding: 10px;
55
  cursor: pointer;
56
  border-radius: 10px;
57
+ background: #444;
58
+ margin-bottom: 5px;
59
  }
60
 
61
  .color-option:hover, .font-option:hover, .toggle-option:hover, .background-option:hover {
62
+ background: #555;
63
  }
64
 
65
  button {
 
69
  background: #555;
70
  border: none;
71
  color: white;
 
72
  border-radius: 20px;
73
+ margin: 10px;
74
  }
75
 
76
  button:hover {
77
  background: #777;
78
  }
79
 
80
+ .menu-buttons {
81
+ display: flex;
82
+ flex-direction: row;
83
+ justify-content: center;
84
+ width: 100%;
85
+ }
86
+
87
  input[type="checkbox"] {
88
  margin-right: 10px;
89
  }