First Commit

This commit is contained in:
mrtoine 2025-09-12 11:11:44 +02:00
commit ce0758fbbb
496 changed files with 52062 additions and 0 deletions

46
static/themes/00s/typo.css Executable file
View file

@ -0,0 +1,46 @@
@import url('https://fonts.googleapis.com/css2?family=Tahoma:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Verdana:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Trebuchet+MS:wght@400;700&display=swap');
body {
font-family: 'Verdana', sans-serif;
font-size: 14px;
}
h1, h2, h3, .breadcrumbs, .btn, input, select, textarea, button, .notification, .page-link, .guestbook p {
font-family: 'Trebuchet MS', sans-serif;
}
h1, h2, h3 {
font-family: 'Tahoma', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
line-height: 1.5;
}
.btn, button {
font-family: 'Trebuchet MS', sans-serif;
text-transform: uppercase;
font-size: 14px;
}
.menu h2 {
font-family: 'Verdana', sans-serif;
font-size: 16px;
font-weight: bold;
text-align: center;
}
.container {
font-family: 'Verdana', sans-serif;
}
.blink {
animation: blink 1s linear infinite;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}