tools/guestbook/style.css
zyqunix 3cf2363147 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
2025-01-17 23:14:57 +01:00

56 lines
787 B
CSS

@import url(/global.css);
h6 {
margin-top: -10px;
}
.guestbook-entry {
margin-bottom: 20px;
padding: 10px;
border: 2px solid #3f3f3f;
background-color: #2f2f2f;
max-width: 50vw;
text-align: left;
border-radius: 8px;
}
.guestbook-entry p {
margin: 5px 0;
}
.guestbook-entry a:hover {
text-decoration: underline;
}
@media (max-width: 1200px) {
.guestbook-entry {
max-width: 60vw;
}
body {
margin: 20px;
}
}
@media (max-width: 768px) {
body {
font-size: medium;
}
.guestbook-entry {
max-width: 80vw;
}
}
@media (max-width: 480px) {
body {
font-size: small;
margin: 10px;
}
.guestbook-entry {
max-width: 90vw;
padding: 8px;
}
}