limepot-xyz/public/css/limepot.css

64 lines
1,006 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 {
background: repeat url("/assets/background.png");
-webkit-background-size: repeat;
-moz-background-size: cover;
-o-background-size: cover;
background-size: repeat;
2024-07-03 23:32:50 -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;
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
.content {
width: 85%;
max-width: 75em;
margin: auto;
padding: 0.5em;
margin-top: 1em;
2024-06-25 15:19:47 -06:00
margin-bottom: 1em;
2024-07-03 23:32:50 -06:00
border: 3px solid #fab387;
border-radius: 5px;
opacity: 0.9;
background: rgba(0, 0, 0, .66);
2024-06-17 15:56:06 -06:00
}
2024-07-03 23:32:50 -06:00
.small-quote {
font-size: smaller;
color: #a6adc8;
2024-06-17 15:56:06 -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 {
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-06-17 15:56:06 -06:00
}
2024-07-03 23:32:50 -06:00
hr {
width: 32%;
color: #6e738d;
2024-06-17 15:56:06 -06:00
}