|
1 | 1 | /* Global styles: Reset, Typography, Variables, Header, Footer */ |
2 | | -@import url('https://fonts.googleapis.com/css?family=Raleway:300&display=swap'); |
3 | | -@import url('https://fonts.googleapis.com/css?family=Monoton&display=swap'); |
4 | | -@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap'); |
5 | 2 |
|
6 | 3 | :root{ |
7 | 4 | /* default theme variables (can be overridden by theme files like color-blue.css) */ |
8 | | - --clr-primary: #c70039; |
9 | | - --clr-primary-variant: #9a002c; |
| 5 | + --clr-primary: #00d1ff; |
| 6 | + --clr-primary-variant: #00a8cc; |
10 | 7 | } |
11 | 8 |
|
12 | 9 | /* Reset */ |
@@ -40,7 +37,10 @@ input::-webkit-inner-spin-button { |
40 | 37 | margin: 0; |
41 | 38 | } |
42 | 39 | /* Firefox number input */ |
43 | | -input[type=number] { -moz-appearance: textfield; } |
| 40 | +input[type=number] { |
| 41 | + appearance: textfield; |
| 42 | + -moz-appearance: textfield; |
| 43 | +} |
44 | 44 |
|
45 | 45 | /* Base layout */ |
46 | 46 | html{ background: #101010; } |
@@ -110,6 +110,16 @@ body.ready .footer-minimal { |
110 | 110 | align-items: center; |
111 | 111 | justify-content: center; |
112 | 112 | will-change: transform; |
| 113 | + visibility: hidden; |
| 114 | + pointer-events: none; |
| 115 | + transition: transform 0.24s ease, visibility 0s linear 0.24s; |
| 116 | +} |
| 117 | + |
| 118 | +#navigation-content.is-open { |
| 119 | + transform: translateY(0); |
| 120 | + visibility: visible; |
| 121 | + pointer-events: auto; |
| 122 | + transition: transform 0.24s ease; |
113 | 123 | } |
114 | 124 |
|
115 | 125 | #navigation-bar{ position: fixed; height: 100px; width: 100%; z-index: 9999; padding: 10px; background:transparent; overflow: hidden; } |
@@ -183,6 +193,93 @@ body.ready .footer-minimal { |
183 | 193 | /* small helpers */ |
184 | 194 | .color{ color: var(--clr-primary); transition: all .4s ease; } |
185 | 195 |
|
| 196 | +.cv a button, button, .btn { |
| 197 | + background: var(--clr-primary) !important; |
| 198 | + color: #000 !important; |
| 199 | +} |
| 200 | + |
| 201 | +.credits-trigger { |
| 202 | + background: none !important; |
| 203 | + color: var(--clr-primary-variant) !important; |
| 204 | +} |
| 205 | + |
| 206 | +.lordicon-credit { |
| 207 | + color: #555; |
| 208 | + text-decoration: none; |
| 209 | + transition: color 0.3s ease; |
| 210 | + margin-left: 5px; |
| 211 | +} |
| 212 | + |
| 213 | +.lordicon-credit:hover { |
| 214 | + color: var(--clr-primary, #00d1ff); |
| 215 | +} |
| 216 | + |
| 217 | +.footer-minimal { |
| 218 | + padding: 30px 0; |
| 219 | + text-align: center; |
| 220 | + border-top: 1px solid rgba(255,255,255,0.05); |
| 221 | +} |
| 222 | + |
| 223 | +.footer-minimal p { |
| 224 | + font-size: 13px; |
| 225 | + color: #666; |
| 226 | +} |
| 227 | + |
| 228 | +.credits-trigger { |
| 229 | + background: none; |
| 230 | + border: none; |
| 231 | + padding: 0; |
| 232 | + font: inherit; |
| 233 | + color: var(--clr-primary-variant); |
| 234 | + cursor: pointer; |
| 235 | + text-decoration: underline; |
| 236 | + transition: color 0.3s; |
| 237 | +} |
| 238 | + |
| 239 | +.credits-trigger:hover { |
| 240 | + color: var(--clr-primary); |
| 241 | +} |
| 242 | + |
| 243 | +.credits-hidden { |
| 244 | + display: none; |
| 245 | + margin-top: 15px; |
| 246 | + animation: fadeIn 0.5s ease; |
| 247 | +} |
| 248 | + |
| 249 | +.credits-grid { |
| 250 | + display: flex; |
| 251 | + justify-content: center; |
| 252 | + gap: 15px; |
| 253 | + flex-wrap: wrap; |
| 254 | +} |
| 255 | + |
| 256 | +.credits-grid a { |
| 257 | + font-size: 11px; |
| 258 | + color: #444; |
| 259 | + text-decoration: none; |
| 260 | +} |
| 261 | + |
| 262 | +.credits-grid a:hover { |
| 263 | + color: var(--clr-primary); |
| 264 | +} |
| 265 | + |
| 266 | +.visually-hidden { |
| 267 | + position: absolute; |
| 268 | + width: 1px; |
| 269 | + height: 1px; |
| 270 | + padding: 0; |
| 271 | + margin: -1px; |
| 272 | + overflow: hidden; |
| 273 | + clip: rect(0, 0, 0, 0); |
| 274 | + white-space: nowrap; |
| 275 | + border: 0; |
| 276 | +} |
| 277 | + |
| 278 | +@keyframes fadeIn { |
| 279 | + from { opacity: 0; } |
| 280 | + to { opacity: 1; } |
| 281 | +} |
| 282 | + |
186 | 283 | /* Particles Fallback Styles */ |
187 | 284 | .particles-fallback { |
188 | 285 | background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important; |
|
0 commit comments