Spaces:
Running
Running
Update static/style.css
Browse files- static/style.css +18 -0
static/style.css
CHANGED
@@ -128,6 +128,24 @@ body::before {
|
|
128 |
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
129 |
}
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
|
133 |
.main-content-area {
|
|
|
128 |
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
129 |
}
|
130 |
|
131 |
+
.home-link {
|
132 |
+
display: flex;
|
133 |
+
justify-content: center;
|
134 |
+
margin-top: -10px;
|
135 |
+
margin-bottom: -10px;
|
136 |
+
}
|
137 |
+
|
138 |
+
.home-icon {
|
139 |
+
width: 30px;
|
140 |
+
height: 30px;
|
141 |
+
cursor: pointer;
|
142 |
+
transition: transform 0.3s ease;
|
143 |
+
}
|
144 |
+
|
145 |
+
.home-icon:hover {
|
146 |
+
transform: scale(1.2);
|
147 |
+
}
|
148 |
+
|
149 |
|
150 |
|
151 |
.main-content-area {
|