limepot-xyz/public/css/limepot.css

49 lines
779 B
CSS
Raw Normal View History

2024-06-17 15:56:06 -06:00
@import "classes.css";
2024-07-03 23:32:50 -06:00
@import "colors.css";
2024-06-17 15:56:06 -06:00
2024-07-03 18:50:21 -06:00
@font-face {
font-family: standardGalactic;
src: url(/fonts/galactic.ttf);
}
2024-06-17 15:56:06 -06:00
:root {
2024-07-04 20:51:56 -06:00
background: repeat url("/assets/background-darker.png");
2024-06-17 15:56:06 -06:00
-webkit-background-size: repeat;
-moz-background-size: cover;
-o-background-size: cover;
background-size: repeat;
2024-07-13 00:03:34 -06:00
2024-06-25 15:19:47 -06:00
padding: 1rem;
2024-07-03 23:32:50 -06:00
width: 1000px;
2024-06-25 15:19:47 -06:00
max-width: calc(100% - 2rem);
font-size: 20px;
2024-07-04 00:16:49 -06:00
font-family: system-ui, sans-serif;
2024-06-25 15:19:47 -06:00
line-height: 1.6;
2024-07-03 23:32:50 -06:00
margin: auto;
2024-06-25 15:19:47 -06:00
}
2024-07-03 23:32:50 -06:00
footer {
text-align: center;
2024-06-17 15:56:06 -06:00
}
2024-07-03 23:32:50 -06:00
figure {
text-align: center;
2024-06-17 15:56:06 -06:00
}
2024-07-03 23:32:50 -06:00
audio {
2024-07-13 00:03:34 -06:00
width: 100%;
;
2024-06-17 15:56:06 -06:00
}
2024-07-03 23:32:50 -06:00
h1 {
font-size: 4rem;
font-weight: 700;
line-height: 1;
margin-bottom: 1em;
2024-07-10 02:35:20 -06:00
text-align: center;
2024-06-17 15:56:06 -06:00
}
2024-07-03 23:32:50 -06:00
hr {
width: 32%;
2024-07-13 00:12:39 -06:00
color: var(--gray);
2024-06-17 15:56:06 -06:00
}