1. changed to a global css instead of using the same shit over and over.

2. deleted soem unused stuff
3. stole some windows' api virtual keys site keys
This commit is contained in:
zyqunix 2025-01-17 23:14:57 +01:00
parent e5449fda26
commit 3cf2363147
18 changed files with 1276 additions and 612 deletions

View file

@ -1,45 +1,14 @@
@font-face {
font-family: 'Hack';
src: url('/Fonts/Hack/Hack-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'JetBrainsMono';
src: url('/Fonts/JetBrainsMono/JetBrainsMono-Regular.woff2');
}
@import url(/global.css);
h6 {
margin-top: -10px;
}
body {
background-color: #505050;
font-family: 'Hack', 'JetBrainsMono', monospace;
margin: 20px 40px 20px 40px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
padding: 20px;
flex-direction: column;
font-size: large;
}
::selection {
color: white;
background-color: #b49cdf;
}
* {
color: white;
}
.guestbook-entry {
margin-bottom: 20px;
padding: 10px;
border: 2px solid #707070;
background-color: #606060;
border: 2px solid #3f3f3f;
background-color: #2f2f2f;
max-width: 50vw;
text-align: left;
border-radius: 8px;
@ -49,15 +18,6 @@ body {
margin: 5px 0;
}
a {
color: #b49cdf;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.guestbook-entry a:hover {
text-decoration: underline;
}