emii.gay/static/style.css

207 lines
3.4 KiB
CSS

/* Fonts */
@font-face {
font-family: Avara Bold;
src: url(/static/avara.otf);
/* Normally I'm against using fonts in websites, but I mean COME ON. This isn't
* Helvetica Clone 13, it's COMIC MONO. How iconic is that??? */
}
/* Fonts */
@font-face {
font-family: Fengardo Neue;
src: url(/static/fengardo-neue.otf);
/* Normally I'm against using fonts in websites, but I mean COME ON. This isn't
* Helvetica Clone 13, it's COMIC MONO. How iconic is that??? */
}
/* Basic styling */
body {
margin: 0;
color: white;
font-family: Fengardo Neue;
font-size: 1.2rem;
background-color: #141016;
}
/* Setting up the centered content */
main > section {
display: grid;
justify-content: center;
padding: 50px 0;
}
main > section > * {
width: min(80vw, 700px)
}
/* Styles for the header */
header p:first-of-type {
font-size: 2em;
}
h1 {
font-size: 5em;
margin-top: 15px;
margin-bottom: 15px;
}
header {
font-family: Avara Bold;
text-align: center;
height: 70vh;
display: grid;
align-content: center;
background-color: #280C3F;
}
/* Flag Styling */
.flag {
display: grid;
grid-auto-flow: column;
width: 200px;
height: 10px;
border-radius: 3px;
overflow: hidden;
}
.flag > div {
height: 10px;
}
footer {
display: grid;
justify-items: center;
align-items: center;
padding-bottom: 50px;
}
/* Styles for the cards */
#cards {
display: grid;
grid-template-columns: repeat(3, max(20vw, 350px));
justify-content: space-evenly;
background-color: #280C3F;
padding: 40px 0;
}
.card {
color: #280C3F;
padding: 0 10px;
}
.card h2 {
color: #280C3F;
text-align: center;
}
.card a {
color: inherit;
text-decoration: none;
}
.card:nth-child(1) {
background-color: #ff2f94;
grid-area: 1/1/3/2;
}
.card:nth-child(2) {
background-color: #ff8153;
grid-area: 2/2/4/3;
}
.card:nth-child(3) {
background-color: #ff964a;
grid-area: 3/3/5/4;
}
@media (max-width: 1160px) {
#cards {
grid-template-columns: repeat(2, 350px);
gap: 50px;
justify-content: center;
}
.card:nth-child(3) {
grid-area: 3/1/6/2;
}
}
@media (max-width: 800px) {
#cards {
grid-template-columns: 350px;
row-gap: 50px
}
#cards .card {
grid-area: initial;
}
}
/* Card Specific Details */
.card:nth-child(1) > h2 {
margin-bottom: 0px;
}
.pronouns {
font-family: Avara Bold;
text-align: center;
margin-top: 10px;
}
.contact {
font-size: 0.9rem;
display: grid;
grid-template-columns: 1fr 0fr 1fr;
}
.matrix:hover,.email:hover {
font-size: 0;
}
.email:hover:after {
font-size: 0.9rem;
content: "emi@alchemi.dev"
}
.matrix:hover:after {
font-size: 0.9rem;
content: "@emi:the-apothecary.club"
}
#socials a {
display: grid;
grid-template-columns: 0fr 1fr;
gap: 4px;
align-items: center;
justify-content: start;
}
#socials a:hover {
text-decoration: underline;
font-weight: bold;
}
#socials {
display: grid;
justify-content: center;
margin-bottom: 20px;
}
#socials p {
margin: 8px;
}
.card:nth-child(3) {
padding: 0 30px;
}
/* General Markdown Styling */
h2 {
font-family: Avara Bold;
}
code {
background-color: rgba(200, 200, 200, 0.1);
padding: 2px 5px;
border-radius: 5px;
}
/* Widgets & Components */
.horizontal {
display: grid;
grid-auto-flow: column;
justify-content: space-between;
}
/* Color Scheme */
h1, a {
color: #AA89FD;
}
h2 {
color: #F10385;
}
main > section {
counter-increment: section-number;
background-color: rgba(40, 12, 63, calc(1 - var(--section-number) / var(--section-count, 5)));
}
svg {
fill: currentColor;
}