Mercurial > web
comparison css/style.css @ 69:2e645b936727
*: huge overhaul
1. the INDEX PAGE was broken for so long, but I really could not have been arsed to fix it.
2. all major css has been moved to css/style.css
3. png files are now all jpg files because having pngs on a website is overkill
4. update libopenmpt, not sure if it works (local JS doesn't work on my browser)
5. libopenmpt is now the JS-only version because browsers like pale moon still don't support
WASM
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Sat, 30 Sep 2023 00:34:22 -0400 |
| parents | |
| children | ff98f97603ca |
comparison
equal
deleted
inserted
replaced
| 68:de57aed2d203 | 69:2e645b936727 |
|---|---|
| 1 .navbar { | |
| 2 text-align: left; /* Override body text align */ | |
| 3 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); | |
| 4 } | |
| 5 .container { | |
| 6 width: 98%; | |
| 7 margin-top: 1%; | |
| 8 } | |
| 9 body { | |
| 10 color: white; | |
| 11 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| 12 text-align: center; | |
| 13 text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6); | |
| 14 } | |
| 15 div.box { | |
| 16 background-color: rgba(0, 0, 0, 0.5); | |
| 17 box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5) inset; | |
| 18 color: white; | |
| 19 text-align: center; | |
| 20 margin: 1% auto; | |
| 21 padding: 15px; | |
| 22 max-width: 500px; | |
| 23 } | |
| 24 .center { | |
| 25 position: absolute; | |
| 26 top: 50%; | |
| 27 left: 50%; | |
| 28 transform: translate(-50%, -50%); | |
| 29 } | |
| 30 a:link, a:visited, a:hover, a:active { | |
| 31 color: #ff6600; | |
| 32 } | |
| 33 /* Only in index.html */ | |
| 34 div.logos { | |
| 35 filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5)); | |
| 36 image-rendering: pixelated; | |
| 37 } |
