add buttons

This commit is contained in:
2024-11-05 17:41:47 +00:00
parent 76a86b0bd6
commit 74bbf8a2fa
6 changed files with 51 additions and 4 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

+12 -2
View File
@@ -23,8 +23,18 @@
if you want to contact me, email <a class="email">me [AT] futile [DOT] eu</a> if you want to contact me, email <a class="email">me [AT] futile [DOT] eu</a>
</p> </p>
</div> </div>
<div class="footer"> <div style="position: absolute; bottom: 0; left: 0; right: 0;">
<p id="quote">who are you</p> <div class="buttons">
<ul class="buttons">
<li><a href="https://futile.neocities.org"><img src="buttons/futile.png" width="88px" height="31px"></a></li>
<li><a href="https://xenia.blahaj.land/"><img src="buttons/rose_88x31.png" width="88px" height="31px"></a></li>
<li><iframe src="//incr.easrng.net/badge?key=futile" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe></li>
<li><a href="https://fedoraproject.org/spins/kde"><img src="buttons/fedora.png" width="88px" height="31px"></a></li>
</ul>
</div>
<div class="footer">
<p id="quote">who are you</p>
</div>
</div> </div>
</body> </body>
+38 -1
View File
@@ -1,20 +1,25 @@
@import url(https://fonts.bunny.net/css?family=bokor:400); @import url(https://fonts.bunny.net/css?family=bokor:400);
@font-face { @font-face {
font-family: 'Iosevka', monospace; font-family: 'Iosevka', monospace;
src: url('assets/Iosevka-Regular.woff2'); src: url('fonts/Iosevka-Regular.woff2');
} }
* { * {
user-select: none; user-select: none;
} }
body { body {
background-color: black; background-color: black;
color: white; color: white;
font-family: 'Iosevka', monospace; font-family: 'Iosevka', monospace;
} }
.email { .email {
text-decoration: underline dashed; text-decoration: underline dashed;
user-select: text; user-select: text;
} }
.main-title { .main-title {
font-family: 'Bokor', display; font-family: 'Bokor', display;
font-size: 5em; font-size: 5em;
@@ -22,15 +27,18 @@ body {
margin-top: 0.2em; margin-top: 0.2em;
margin-bottom: 0em; margin-bottom: 0em;
} }
.separator { .separator {
line-height: 0em; line-height: 0em;
margin-top: 0.5em; margin-top: 0.5em;
margin-bottom: 0em; margin-bottom: 0em;
user-select: none; user-select: none;
} }
.content { .content {
line-height: 1.3em; line-height: 1.3em;
} }
.box { .box {
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -38,6 +46,30 @@ body {
max-width: 480px; max-width: 480px;
margin: 0 auto; margin: 0 auto;
} }
div.buttons {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
position: absolute;
bottom: 50px;
left: 0;
right: 0;
}
ul.buttons {
list-style-type: none;
margin: -8px;
padding: 0;
padding-left: 10px;
display: flex;
}
ul.buttons li {
margin-right: 3px;
}
div.footer { div.footer {
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -47,7 +79,9 @@ div.footer {
bottom: 0; bottom: 0;
left: 0; left: 0;
right: 0; right: 0;
height: 2.9em;
} }
/* ul.footer { /* ul.footer {
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
@@ -55,13 +89,16 @@ div.footer {
padding-left: 10px; padding-left: 10px;
display: flex; display: flex;
} }
ul.footer li { ul.footer li {
margin-right: 10px; margin-right: 10px;
} }
ul.footer a { ul.footer a {
color: white; color: white;
text-decoration: none; text-decoration: none;
} }
ul.footer a:hover { ul.footer a:hover {
text-decoration: underline; text-decoration: underline;
} */ } */