www.kontakt-bamberg.de/assets/style.scss

296 lines
3.8 KiB
SCSS
Raw Normal View History

2023-03-11 11:41:19 +01:00
@import 'breakpoints';
@import 'colors';
@import 'fonts';
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: $color-background;
color: $color-text;
display: flex;
flex-direction: column;
font-family: "Maven Pro", sans-serif;
2023-03-11 14:02:10 +01:00
font-size: 18px;
line-height: 1.5;
2023-03-11 11:41:19 +01:00
margin: 0 auto;
max-width: $large;
min-height: 100vh;
main {
flex-grow: 1;
}
}
header, footer {
padding: 0 1rem;
}
header {
align-items: center;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 1rem;
a img {
display: block;
}
2023-03-11 11:41:19 +01:00
nav {
font-size: 1.2rem;
}
.header-brand {
align-items: center;
display: flex;
}
2023-03-11 11:41:19 +01:00
.header-logo {
height: 3.2rem;
width: auto;
}
.nav-burger {
margin-right: 0.5rem;
}
.sm-menu {
display: flex;
margin-left: 0.5rem;
a {
margin-left: 0.5rem;
.sm-icon {
height: auto;
transition: opacity 0.25s;
width: 1.5rem;
}
&:hover .sm-icon {
opacity: 0.7;
}
}
}
@media screen and (min-width: $small) {
flex-wrap: nowrap;
nav {
flex-wrap: wrap;
justify-content: right;
}
}
2023-03-11 11:41:19 +01:00
}
main {
padding: 1rem;
& > :last-child {
2023-03-11 16:04:10 +01:00
margin-bottom: 0 !important;
2023-03-11 11:41:19 +01:00
}
& > p > img {
max-width: 100%;
}
}
footer {
margin-bottom: 1rem;
nav {
align-items: end;
@media screen and (min-width: $small) {
align-items: normal;
justify-content: end;
}
}
}
nav {
display: flex;
flex-direction: column;
&.nav-toggleable {
flex-basis: 100%;
max-height: 0;
overflow-y: hidden;
transition: max-height 0.5s;
.nav-toggle:checked ~ & {
max-height: calc(var(--num-elements) * 2em);
}
}
&.pagination {
margin-top: 2.5em;
:first-child {
margin: 0;
}
}
a, span {
line-height: 1.5em;
margin: 0.5em 0 0 0;
}
@media screen and (min-width: $small) {
flex-direction: row;
&.nav-toggleable {
flex-basis: auto;
max-height: max-content;
}
a, span {
margin: 0 0 0 1em;
}
}
}
2023-03-11 14:07:49 +01:00
article {
display: flex;
2023-03-11 16:04:10 +01:00
& > .image {
display: none;
& > img {
height: auto;
width: 100%;
}
2023-03-11 14:07:49 +01:00
@media screen and (min-width: $small) {
2023-03-11 16:04:10 +01:00
display: block;
2023-03-11 14:07:49 +01:00
}
}
2023-03-11 16:04:10 +01:00
&.preview {
margin-bottom: 3rem;
2023-03-11 14:07:49 +01:00
2023-03-11 16:04:10 +01:00
& > .image {
align-items: center;
height: 200px;
justify-content: center;
2023-03-11 16:12:55 +01:00
min-width: 200px;
2023-03-11 16:04:10 +01:00
overflow: hidden;
2023-03-11 16:12:55 +01:00
margin-right: 1.5rem;
2023-03-11 16:04:10 +01:00
width: 200px;
2023-03-11 14:07:49 +01:00
2023-03-11 16:04:10 +01:00
@media screen and (min-width: $small) {
display: flex;
}
}
& > .text {
flex-grow: 1;
}
}
&.page {
& > .image {
text-align: right;
@media screen and (min-width: $small) {
padding-left: 1.5em;
width: 60%;
}
}
& > .text {
width: 100%;
@media screen and (min-width: $small) {
width: 40%;
2023-03-11 14:07:49 +01:00
}
}
}
}
2023-03-11 11:41:19 +01:00
a {
color: $color-link;
text-decoration: none;
&:hover, &.is-active {
text-decoration: underline;
}
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
2023-03-11 11:41:19 +01:00
margin-bottom: 0.5em;
}
p {
margin-bottom: 1em;
}
ol, ul {
margin-bottom: 2em;
padding-left: 2em;
}
hr {
color: $color-text;
margin: 3em 0;
}
.blur-on-hover {
transition: all 500ms;
&:hover {
filter: blur(5px);
transform: scale(120%);
}
}
2023-03-11 16:04:10 +01:00
.date {
margin-bottom: 0;
@media screen and (min-width: $small) {
margin-bottom: 0.5em;
}
}
2023-03-11 11:41:19 +01:00
.nav-burger {
cursor: pointer;
display: flex;
flex-direction: column;
height: 1rem;
justify-content: space-between;
width: 1.2rem;
div {
background: $color-burger;
height: 2px;
transition: background 0.5s, transform 0.5s;
}
.nav-toggle:checked ~ & div {
background: transparent;
&:first-child {
background: $color-burger;
transform: translateY(0.5rem) translateY(-1px) rotate(45deg) scaleX(141%);
}
&:last-child {
background: $color-burger;
transform: translateY(-0.5rem) translateY(1px) rotate(-45deg) scaleX(141%);
}
}
@media screen and (min-width: $small) {
display: none;
}
}
.nav-toggle {
display: none;
}