hatecomputers.club/static/css/styles.css

47 lines
743 B
CSS
Raw Normal View History

2024-03-26 18:00:05 -04:00
@import "/static/css/colors.css";
@import "/static/css/blinky.css";
@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-25 14:08:35 -04:00
}
body {
2024-03-26 18:00:05 -04:00
font-family: "ComicSans", sans-serif;
2024-03-25 14:08:35 -04:00
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;
2024-03-27 01:53:42 -04:00
opacity: 0.95;
2024-03-26 18:00:05 -04:00
}
hr {
border: 0;
border-top: 1px solid var(--text-color);
margin: 20px 0;
2024-03-25 14:08:35 -04:00
}