Spaces:
Running
on
Zero
Running
on
Zero
Add header
Browse files
style.css
CHANGED
@@ -64,4 +64,35 @@ h1 {
|
|
64 |
|
65 |
#history_gallery img:hover {
|
66 |
transform: scale(1.05);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
}
|
|
|
64 |
|
65 |
#history_gallery img:hover {
|
66 |
transform: scale(1.05);
|
67 |
+
}
|
68 |
+
|
69 |
+
header {
|
70 |
+
background-color: #222;
|
71 |
+
padding: 20px;
|
72 |
+
position: sticky;
|
73 |
+
top: 0;
|
74 |
+
z-index: 100;
|
75 |
+
}
|
76 |
+
|
77 |
+
nav {
|
78 |
+
display: flex;
|
79 |
+
justify-content: space-between;
|
80 |
+
align-items: center;
|
81 |
+
}
|
82 |
+
|
83 |
+
nav img {
|
84 |
+
height: 40px;
|
85 |
+
}
|
86 |
+
|
87 |
+
.mode-switch {
|
88 |
+
display: flex;
|
89 |
+
gap: 10px;
|
90 |
+
background-color: #FAF0E6; /* Pearl white background color */
|
91 |
+
padding: 10px;
|
92 |
+
border-radius: 5px;
|
93 |
+
}
|
94 |
+
|
95 |
+
.mode-switch img {
|
96 |
+
cursor: pointer;
|
97 |
+
height: 24px;
|
98 |
}
|