Mercurial
comparison mrjunejune/pages/base.css @ 82:1ded13720541
Added new logos.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 01 Jan 2026 12:45:22 -0800 |
| parents | d55157451947 |
| children |
comparison
equal
deleted
inserted
replaced
| 81:37fc1ec888b6 | 82:1ded13720541 |
|---|---|
| 232 --box-shadow: 0 -2px -6px rgba(159, 140, 96, 25%), | 232 --box-shadow: 0 -2px -6px rgba(159, 140, 96, 25%), |
| 233 0 -8px -24px rgba(159, 140, 96, 33%), 0 -16px -32px rgba(159, 140, 96, 33%); | 233 0 -8px -24px rgba(159, 140, 96, 33%), 0 -16px -32px rgba(159, 140, 96, 33%); |
| 234 } | 234 } |
| 235 } | 235 } |
| 236 | 236 |
| 237 /* Dark mode toggle button */ | |
| 238 .dark-mode-toggle { | |
| 239 position: fixed; | |
| 240 top: 20px; | |
| 241 left: 20px; | |
| 242 width: 40px; | |
| 243 height: 40px; | |
| 244 border-radius: 50%; | |
| 245 background: var(--white); | |
| 246 cursor: pointer; | |
| 247 display: flex; | |
| 248 align-items: center; | |
| 249 justify-content: center; | |
| 250 font-size: 20px; | |
| 251 transition: all 0.3s ease; | |
| 252 z-index: 1000; | |
| 253 box-shadow: 0 2px 8px rgba(0,0,0,0.2); | |
| 254 } | |
| 255 | |
| 256 .dark-mode-toggle:hover { | |
| 257 transform: scale(1.1); | |
| 258 box-shadow: 0 4px 12px rgba(0,0,0,0.3); | |
| 259 } | |
| 260 | |
| 261 a { | 237 a { |
| 262 text-decoration: underline; | 238 text-decoration: underline; |
| 263 } | 239 } |
| 264 | 240 |
| 265 a::before { | 241 a::before { |