mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 20:30:10 +01:00
42 lines
493 B
SCSS
42 lines
493 B
SCSS
|
.title-padder {
|
||
|
padding: $title-padding;
|
||
|
}
|
||
|
|
||
|
h1.title {
|
||
|
@extend .subtle-txt-shadow;
|
||
|
padding: 0.5em 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
.subtitle {
|
||
|
font-weight: normal;
|
||
|
margin-top: 5px;
|
||
|
text-shadow: 1px 1px 2px var(--text-shadow);
|
||
|
}
|
||
|
|
||
|
//Shared css in _post.scss
|
||
|
|
||
|
|
||
|
/* --- Aligner --- */
|
||
|
/* within page/posts */
|
||
|
|
||
|
.row {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
padding: 0.9% 0 1.5% 0;
|
||
|
}
|
||
|
|
||
|
.column {
|
||
|
flex: 50%;
|
||
|
|
||
|
img {
|
||
|
width: 100%;
|
||
|
min-width: 250px;
|
||
|
}
|
||
|
|
||
|
.single {
|
||
|
width: 50%;
|
||
|
display: block;
|
||
|
}
|
||
|
}
|