Spaces:
Running
Running
Update src/templates/base.html
Browse files- src/templates/base.html +31 -0
src/templates/base.html
CHANGED
|
@@ -31,6 +31,37 @@ body {
|
|
| 31 |
font-family: 'Inter', sans-serif;
|
| 32 |
}
|
| 33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
.container {
|
| 35 |
width: 100%;
|
| 36 |
max-width: 600px;
|
|
|
|
| 31 |
font-family: 'Inter', sans-serif;
|
| 32 |
}
|
| 33 |
|
| 34 |
+
/* --- GLOBAL HEADER STYLES --- */
|
| 35 |
+
.header {
|
| 36 |
+
padding: 20px;
|
| 37 |
+
background: var(--bg-card);
|
| 38 |
+
border-bottom: 1px solid var(--border);
|
| 39 |
+
display: flex;
|
| 40 |
+
justify-content: space-between;
|
| 41 |
+
align-items: center;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.header h1 {
|
| 45 |
+
margin: 0;
|
| 46 |
+
font-size: 1.1rem;
|
| 47 |
+
color: var(--accent-green);
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
.icon-btn {
|
| 51 |
+
color: var(--text-dim);
|
| 52 |
+
text-decoration: none;
|
| 53 |
+
font-size: 1.2rem;
|
| 54 |
+
padding: 0 10px;
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
.logout-btn {
|
| 58 |
+
color: var(--accent-red);
|
| 59 |
+
text-decoration: none;
|
| 60 |
+
font-size: 1.2rem;
|
| 61 |
+
padding: 0 10px;
|
| 62 |
+
font-weight: bold;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
.container {
|
| 66 |
width: 100%;
|
| 67 |
max-width: 600px;
|