Mercurial > web
annotate index.html @ 72:ff98f97603ca
*: giant redesign
I decided to go from a largely carrd-inspired design to something more
deserving of the title "website". I also removed much of the old, very
crusty HTML and CSS that I had written almost 2 years ago now O_o
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 15 Dec 2023 18:56:52 -0500 |
parents | 2e645b936727 |
children | c8ea71d9d102 |
rev | line source |
---|---|
14 | 1 <!DOCTYPE html> |
2 <head> | |
21
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
3 <title>Home - Paper's website</title> |
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
3c7989047451
Make code prettier and fix a few visual errors
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
5 <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
26 | 6 <meta name="google-site-verification" content="rILPN0Fit17u21ImKQW-ZHQMvx_Ak7qcuM3ewqtrJg8" /> |
56
c95a96b61d9a
html: Add Content Security Policy headers
Paper <mrpapersonic@gmail.com>
parents:
51
diff
changeset
|
7 <!-- bootstrap 2.3.2 gives an error that the `zoom` css property isn't supported, |
c95a96b61d9a
html: Add Content Security Policy headers
Paper <mrpapersonic@gmail.com>
parents:
51
diff
changeset
|
8 but we don't have anything that uses it anyway --> |
57
ac1900c0e376
html: Remove CSP and use local files
Paper <mrpapersonic@gmail.com>
parents:
56
diff
changeset
|
9 <link href="./css/bootstrap.min.css" rel="stylesheet" media="screen"> |
69 | 10 <link href="./css/style.css" rel="stylesheet" media="screen"> |
72 | 11 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico?"> |
69 | 12 <style> |
20 | 13 body { |
67
6019514100d4
html: fix random scaling shit on >1080p monitors
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
14 background-size: cover; |
72 | 15 background-repeat: no-repeat; |
16 background-image: url("indexbg.jpg"); /* Hibike! Euphonium */ | |
67
6019514100d4
html: fix random scaling shit on >1080p monitors
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
17 background-position: center top; |
69 | 18 background-color: #1F255A; |
72 | 19 min-height: 100vh; |
56
c95a96b61d9a
html: Add Content Security Policy headers
Paper <mrpapersonic@gmail.com>
parents:
51
diff
changeset
|
20 } |
14 | 21 </style> |
22 </head> | |
23 <body> | |
72 | 24 <!-- I tried to make this HTML as clean as possible, as to reduce clutter |
25 from what these pages used to look like :/ | |
26 | |
27 Much of this page has taken "inspiration" (read: was stolen) from | |
28 sdomi's page at https://sdomi.pl/ --> | |
29 <div class="navbar navbar-inverse navbar-static-top"> | |
30 <div class="navbar-inner"> | |
31 <a class="brand" href="#">Paper's website</a> | |
32 <ul class="nav"> | |
33 <li class="active"><a href="#">Home</a></li> | |
34 </ul> | |
67
6019514100d4
html: fix random scaling shit on >1080p monitors
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
35 </div> |
6019514100d4
html: fix random scaling shit on >1080p monitors
Paper <mrpapersonic@gmail.com>
parents:
66
diff
changeset
|
36 </div> |
72 | 37 |
38 <br /> | |
39 | |
40 <div class="header"> | |
41 <img class="avatar drop-shadow-box" src="media/avatar.jpg" | |
42 alt="Himeko Inaba from Kokoro Connect" title="Himeko Inaba from Kokoro Connect" /> | |
43 <h1 class="title drop-shadow-text">Paper's website</h1> | |
44 </div> | |
45 | |
46 <div class="content drop-shadow-box"> | |
47 <h2 class="drop-shadow-text">About me</h2> | |
48 <p class="drop-shadow-text"> | |
49 My main interests are retro computers (old Apple stuff mainly), | |
50 programming, and some linguistics. I also make some | |
51 <a href="https://modarchive.org/index.php?request=view_artist_modules&query=92603">tunes</a> | |
52 from time to time. | |
53 </p> | |
54 <p class="drop-shadow-text"> | |
55 I use Debian as my main operating system with KDE Plasma as my desktop environment. | |
56 </p> | |
57 | |
58 <h2 class="drop-shadow-text">Projects</h2> | |
59 <ul> | |
60 <li class="drop-shadow-text"> | |
61 <a href="https://hg.sr.ht/~mrpapersonic/vegas-scripts">Vegas Pro scripts</a>: | |
62 some scripts that make using Vegas Pro less unbearable | |
63 </li> | |
64 <li class="drop-shadow-text"> | |
65 <a href="https://hg.sr.ht/~mrpapersonic/wgsdk">wgsdk</a>: | |
66 a Discord GameSDK plugin for Winamp | |
67 </li> | |
68 </ul> | |
69 | |
70 <h2 class="drop-shadow-text">Socials</h2> | |
71 <ul> | |
72 <li class="drop-shadow-text"> | |
73 E-mail (<a href="mailto:mrpapersonic@gmail.com">mrpapersonic@gmail.com</a>) | |
74 </li> | |
75 <li class="drop-shadow-text"> | |
76 Discord (@slipofpaper) | |
77 </li> | |
78 <li class="drop-shadow-text"> | |
79 Telegram (<a href="https://t.me/mrpapersonic">@mrpapersonic</a>) | |
80 </li> | |
81 <br> | |
82 <li class="drop-shadow-text"> | |
83 Fediverse (<a href="https://miniwa.moe/users/paper">@paper@miniwa.moe</a>) | |
84 </li> | |
85 </ul> | |
14 | 86 </div> |
87 </body> |