-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (54 loc) · 1.75 KB
/
styles.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
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #333; /* Dark theme background */
}
.settings-menu {
margin-top: 20px;
display: grid;
grid-template-columns: 1fr;
gap: 10px;
padding: 20px;
background: #444; /* Slightly lighter grey for contrast */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Soft shadow for depth */
width: auto;
}
.settings-menu label {
display: flex;
justify-content: space-between;
align-items: center;
color: #fff; /* Light text for contrast */
}
.settings-menu input[type="number"],
.settings-menu input[type="color"] {
width: 100px; /* Equal width for alignment */
padding: 5px;
margin-left: 10px; /* Space between label and input */
background-color: #555; /* Dark grey background */
border: 1px solid #666; /* Slightly darker border for definition */
border-radius: 4px; /* Softened edges */
color: #ddd; /* Light text for readability */
}
.settings-menu input[type="color"] {
padding: 0; /* Override for color picker input */
}
.settings-menu button {
padding: 10px 15px;
background-color: #363636; /* Match star active color */
border: none;
border-radius: 5px;
cursor: pointer;
color: #e0e0e0; /* Dark text for contrast */
font-weight: bold;
text-transform: uppercase; /* Stylistic choice for emphasis */
transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions for interaction */
}
.settings-menu button:hover {
background-color: #2b2b2bd3; /* Lighter on hover for interactivity */
}