passion_retro/static/themes/00s/typo.css
2025-09-12 11:11:44 +02:00

46 lines
No EOL
1 KiB
CSS
Executable file

@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; }
}