Rename app to Step-3.7-Flash and style header action buttons
Browse files- static/index.html +2 -2
- static/style.css +16 -5
static/index.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>
|
| 7 |
<!-- Google Fonts -->
|
| 8 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 9 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
@@ -29,7 +29,7 @@
|
|
| 29 |
<path d="M35 30 C35 30, 48 40, 48 55 C48 70, 35 70, 35 70" stroke="#ffffff" stroke-width="8" stroke-linecap="round" fill="none"/>
|
| 30 |
<circle cx="62" cy="50" r="7" fill="#ffffff"/>
|
| 31 |
</svg>
|
| 32 |
-
<span class="brand-name">
|
| 33 |
</div>
|
| 34 |
|
| 35 |
<div class="header-actions">
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Step-3.7-Flash</title>
|
| 7 |
<!-- Google Fonts -->
|
| 8 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 9 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
| 29 |
<path d="M35 30 C35 30, 48 40, 48 55 C48 70, 35 70, 35 70" stroke="#ffffff" stroke-width="8" stroke-linecap="round" fill="none"/>
|
| 30 |
<circle cx="62" cy="50" r="7" fill="#ffffff"/>
|
| 31 |
</svg>
|
| 32 |
+
<span class="brand-name">Step-3.7-Flash</span>
|
| 33 |
</div>
|
| 34 |
|
| 35 |
<div class="header-actions">
|
static/style.css
CHANGED
|
@@ -127,26 +127,37 @@ body {
|
|
| 127 |
|
| 128 |
/* Simplified Header Buttons */
|
| 129 |
.header-btn {
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
background-color: transparent;
|
| 134 |
border: 1px solid var(--border-color);
|
| 135 |
border-radius: var(--border-radius-sm);
|
| 136 |
color: var(--text-secondary);
|
| 137 |
padding: 6px 12px;
|
| 138 |
-
font-size:
|
|
|
|
| 139 |
font-weight: 500;
|
| 140 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
transition: var(--transition-smooth);
|
| 142 |
outline: none;
|
|
|
|
| 143 |
}
|
| 144 |
|
| 145 |
.header-btn:hover {
|
| 146 |
background-color: var(--btn-light-bg);
|
|
|
|
| 147 |
color: var(--text-primary);
|
| 148 |
}
|
| 149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 150 |
.header-btn svg {
|
| 151 |
flex-shrink: 0;
|
| 152 |
}
|
|
|
|
| 127 |
|
| 128 |
/* Simplified Header Buttons */
|
| 129 |
.header-btn {
|
| 130 |
+
appearance: none;
|
| 131 |
+
-webkit-appearance: none;
|
| 132 |
+
background-color: var(--bg-card);
|
|
|
|
| 133 |
border: 1px solid var(--border-color);
|
| 134 |
border-radius: var(--border-radius-sm);
|
| 135 |
color: var(--text-secondary);
|
| 136 |
padding: 6px 12px;
|
| 137 |
+
font-size: 12px;
|
| 138 |
+
font-family: var(--font-body);
|
| 139 |
font-weight: 500;
|
| 140 |
cursor: pointer;
|
| 141 |
+
display: inline-flex;
|
| 142 |
+
align-items: center;
|
| 143 |
+
justify-content: center;
|
| 144 |
+
gap: 6px;
|
| 145 |
transition: var(--transition-smooth);
|
| 146 |
outline: none;
|
| 147 |
+
box-shadow: var(--shadow-sm);
|
| 148 |
}
|
| 149 |
|
| 150 |
.header-btn:hover {
|
| 151 |
background-color: var(--btn-light-bg);
|
| 152 |
+
border-color: #cbd5e1;
|
| 153 |
color: var(--text-primary);
|
| 154 |
}
|
| 155 |
|
| 156 |
+
.header-btn:active {
|
| 157 |
+
background-color: var(--btn-light-hover);
|
| 158 |
+
transform: scale(0.98);
|
| 159 |
+
}
|
| 160 |
+
|
| 161 |
.header-btn svg {
|
| 162 |
flex-shrink: 0;
|
| 163 |
}
|