hatecomputers.club/static/css/styles.css

102 lines
1.8 KiB
CSS
Raw Normal View History

2024-03-26 18:00:05 -04:00
@import "/static/css/colors.css";
@import "/static/css/blinky.css";
2024-03-28 00:55:22 -04:00
@import "/static/css/table.css";
@import "/static/css/form.css";
2024-03-29 18:35:04 -04:00
@import "/static/css/guestbook.css";
@import "/static/css/club.css";
2024-03-26 18:00:05 -04:00
@font-face {
font-family: "ComicSans";
src: url("/static/font/comicsans.ttf");
2024-03-25 14:08:35 -04:00
}
2024-03-26 18:00:05 -04:00
* {
box-sizing: border-box;
margin: 0;
padding: 0;
color: var(--text-color);
2024-03-28 00:55:22 -04:00
font-family: "ComicSans", sans-serif;
2024-04-03 01:28:55 -04:00
}
/* i just cannot get this to look good on firefox... */
@supports not (-moz-appearance: none) {
* {
cursor: url("/static/img/cursor-2.png"), auto;
-webkit-animation: cursor 400ms infinite;
animation: cursor 400ms infinite;
}
2024-04-03 01:28:55 -04:00
@-webkit-keyframes cursor {
0% {
cursor: url("/static/img/cursor-2.png"), auto;
}
50% {
cursor: url("/static/img/cursor-1.png"), auto;
}
100% {
cursor: url("/static/img/cursor-2.png"), auto;
}
}
@keyframes cursor {
0% {
cursor: url("/static/img/cursor-2.png"), auto;
}
50% {
cursor: url("/static/img/cursor-1.png"), auto;
}
100% {
cursor: url("/static/img/cursor-2.png"), auto;
}
}
2024-03-25 14:08:35 -04:00
}
body {
background-color: var(--background-color);
2024-03-26 18:00:05 -04:00
background-image: url("/static/img/stars.gif");
min-height: 100vh;
2024-03-25 14:08:35 -04:00
}
a {
color: var(--link-color);
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.container {
2024-03-26 18:00:05 -04:00
max-width: 1600px;
2024-03-25 14:08:35 -04:00
margin: auto;
background-color: var(--container-bg);
2024-03-26 18:00:05 -04:00
padding: 1rem;
}
hr {
border: 0;
border-top: 1px solid var(--text-color);
margin: 20px 0;
2024-03-25 14:08:35 -04:00
}
2024-03-28 00:55:22 -04:00
.blinkies {
display: flex;
justify-content: left;
flex-wrap: wrap;
max-width: 900px;
gap: 10px 10px;
}
.info {
margin-bottom: 1rem;
max-width: 600px;
transition: opacity 0.3s;
}
.info:hover {
opacity: 0.8;
}