2025-04-16 07:59:48 -04:00
|
|
|
@import url('styles/reset.css');
|
|
|
|
@import url('styles/variables.css');
|
|
|
|
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');
|
|
|
|
|
|
|
|
body {
|
|
|
|
column-gap: var(--gap-md);
|
|
|
|
display: grid;
|
|
|
|
font-family: "Fira Code", monospace;
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
font-weight: 300;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 62.5%;
|
|
|
|
grid-template-areas: "nav content";
|
|
|
|
grid-template-columns: 3fr 9fr;
|
|
|
|
margin: auto;
|
|
|
|
padding-top: var(--gap-md);
|
|
|
|
max-width: 1200px;
|
|
|
|
}
|
|
|
|
|
2025-04-16 17:25:02 -04:00
|
|
|
body > header {
|
2025-04-16 07:59:48 -04:00
|
|
|
border: 2px solid var(--color-bg);
|
|
|
|
grid-area: nav;
|
|
|
|
height: max-content;
|
|
|
|
width: max-content;
|
|
|
|
}
|
|
|
|
|
2025-04-16 17:25:02 -04:00
|
|
|
body > header > .header__title {
|
2025-04-16 07:59:48 -04:00
|
|
|
background-color: var(--color-bg);
|
|
|
|
color: var(--color-on-bg);
|
2025-04-16 23:59:37 -04:00
|
|
|
padding: var(--size-md) var(--size-xl);
|
2025-04-16 07:59:48 -04:00
|
|
|
}
|
|
|
|
|
2025-04-16 17:25:02 -04:00
|
|
|
body > header > .header__title > h1 {
|
2025-04-16 23:59:37 -04:00
|
|
|
font-size: var(--font-title);
|
2025-04-16 07:59:48 -04:00
|
|
|
font-weight: 300;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
2025-04-16 23:59:37 -04:00
|
|
|
align-items: center;
|
2025-04-16 17:25:02 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2025-04-16 23:59:37 -04:00
|
|
|
font-size: var(--font-body);
|
2025-04-16 07:59:48 -04:00
|
|
|
grid-area: content;
|
|
|
|
}
|
2025-04-16 17:25:02 -04:00
|
|
|
|
2025-04-16 23:59:37 -04:00
|
|
|
main > .thought {
|
|
|
|
border: 2px solid var(--color-black);
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
main > .thought > header {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
font-size: var(--font-post-header);
|
|
|
|
padding: var(--size-md) var(--size-md) 0 var(--size-md);
|
|
|
|
}
|
|
|
|
|
|
|
|
main > .thought > header > object {
|
|
|
|
height: 20px;
|
|
|
|
margin-right: var(--size-sm);
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main > .thought > .content {
|
|
|
|
border-top: 2px solid var(--color-black);
|
|
|
|
margin-top: var(--size-md);
|
|
|
|
padding: var(--size-xl) var(--size-2x);
|
2025-04-16 17:25:02 -04:00
|
|
|
}
|
|
|
|
|
2025-04-16 23:59:37 -04:00
|
|
|
main > .thought > .content > p:first-of-type {
|
2025-04-16 17:25:02 -04:00
|
|
|
margin: 0;
|
|
|
|
}
|
2025-04-16 23:59:37 -04:00
|
|
|
|
|
|
|
main > .thought > footer {
|
|
|
|
background-color: var(--color-bg);
|
|
|
|
color: var(--color-on-bg);
|
|
|
|
padding: var(--size-md);
|
|
|
|
}
|