This commit is contained in:
Jay
2026-03-10 21:01:46 +00:00
commit 9006b2e06a
242 changed files with 30823 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
/* Box */
.box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: _size(border-radius);
border: solid _size(border-width);
margin-bottom: _size(element-margin);
padding: 1.5em;
width: 75vw;
> :last-child,
> :last-child > :last-child,
> :last-child > :last-child > :last-child {
margin-bottom: 0;
}
&.alt {
border: 0;
border-radius: 0;
padding: 0;
}
.title {
font-size: 1.5em;
}
img {
width: 80%;
max-width: 600px;
height: auto;
}
.date {
font-size: 1em;
}
.description {
font-size: 1.1em;
padding-top: 1em;
}
}
@mixin color-box($p: null) {
.box {
border-color: _palette($p, border);
}
}
@include color-box;