www.franconian.net/assets/style.scss

212 lines
2.9 KiB
SCSS
Raw Normal View History

@import 'animations';
2020-11-24 21:44:16 +01:00
@import 'breakpoints';
2020-11-23 02:56:53 +01:00
@import 'colors';
2020-11-24 21:44:16 +01:00
@import 'fonts';
2020-11-24 19:31:03 +01:00
@import 'mixins';
2020-11-23 02:06:40 +01:00
2020-11-15 00:32:58 +01:00
* {
2020-11-23 02:06:40 +01:00
font-family: Montserrat, sans-serif;
2020-11-15 00:32:58 +01:00
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
2020-11-23 02:56:53 +01:00
background: $background;
2020-12-18 20:38:35 +01:00
color: $text-color;
2020-11-24 17:58:00 +01:00
display: flex;
flex-direction: column;
min-height: 100vh;
2020-11-23 02:56:53 +01:00
}
2020-11-26 19:01:47 +01:00
h1, h2, h3, h4, h5, h6, p, ul {
margin-top: 0.5em;
padding: 0 0.5rem;
&:last-child {
margin-bottom: 0.5em;
}
}
2020-11-23 02:06:40 +01:00
h1, h2, h3, h4, h5, h6 {
2020-11-24 19:31:03 +01:00
@include heading;
2020-11-23 02:56:53 +01:00
}
2020-12-18 20:38:35 +01:00
h1, footer {
padding-bottom: 0.2em;
@include hline(250px, 4px, $primary-1, $primary-2, $primary-3);
2020-11-23 02:56:53 +01:00
}
2020-12-18 19:54:33 +01:00
a:not(.nav-logo) {
text-decoration: none;
color: $highlight-1;
text-shadow: -1px 1px 0 $background, 0 1px 0 $background, 1px 1px 0 $background;
@include hline(10em, 2px, $highlight-1, $highlight-2, $highlight-3);
2020-12-18 19:54:33 +01:00
&:hover, &:focus {
animation: cycle-link-background 2s steps(4) infinite 0ms;
2020-12-17 20:33:07 +01:00
}
}
2020-12-18 20:38:35 +01:00
main {
width: 100%;
max-width: $large;
margin: 0 auto;
flex-grow: 1;
}
footer {
background-position: right top;
font-size: 0.9em;
color: $text-darker;
width: 100%;
max-width: $large;
margin: 0 auto;
padding: 0.5em;
display: flex;
align-items: center;
flex-direction: column;
@media screen and (min-width: $small) {
flex-direction: row;
& > :first-child {
margin-left: auto;
}
}
}
2020-12-17 20:33:07 +01:00
2020-11-23 18:56:53 +01:00
figure {
margin: 1rem 0;
2020-11-24 01:09:31 +01:00
2020-12-01 23:07:04 +01:00
img, video {
2020-11-23 19:20:05 +01:00
max-width: 100%;
2020-11-23 18:56:53 +01:00
display: block;
margin: 0 auto;
&.invert {
filter: invert(100%);
}
&.fill {
background: $fill-color;
padding: 0.5em;
}
2020-11-23 18:56:53 +01:00
}
figcaption {
display: none;
}
}
2020-12-18 00:04:37 +01:00
ul, ol {
2020-11-26 19:01:47 +01:00
padding-left: 1.5em;
2020-12-18 00:04:37 +01:00
li {
padding: 0.2em 0;
}
2020-11-26 19:01:47 +01:00
}
2020-12-01 17:55:09 +01:00
iframe {
border: none;
width: 100%;
height: 100vh;
2020-12-01 17:55:09 +01:00
display: block;
margin: 1rem 0;
&.aspect-178 {
height: 56.25vw;
max-height: $large * 0.5625;
}
2020-12-01 17:55:09 +01:00
}
2020-12-26 21:18:45 +01:00
table {
border-collapse: collapse;
margin: 1rem 0;
thead th {
@include heading;
font-weight: bold;
}
thead tr, tr:not(:last-child) {
@include hline(10em, 1px, $primary-1, $primary-2, $primary-3)
}
td, th {
padding: 0.2em 0.5em;
text-align: left;
white-space: nowrap;
}
}
2020-11-23 02:56:53 +01:00
.nav {
display: flex;
flex-flow: column wrap;
justify-content: flex-end;
2020-11-23 02:56:53 +01:00
2020-11-24 21:44:16 +01:00
&.nav-main {
max-width: $large;
margin: 0 auto;
padding: 0.5em;
2020-11-24 13:09:45 +01:00
}
hr {
margin: 0.5em 40%;
2020-11-23 02:56:53 +01:00
}
.nav-logo {
2020-11-24 19:31:03 +01:00
@include heading;
2020-11-24 21:44:16 +01:00
text-decoration: none;
2020-12-18 19:54:33 +01:00
color: $text-color;
2020-11-24 19:31:03 +01:00
2020-11-23 02:56:53 +01:00
margin: 0 auto;
img {
2020-11-24 19:31:03 +01:00
width: 48px;
2020-11-24 18:13:42 +01:00
display: inline-block;
2020-11-24 19:31:03 +01:00
margin-right: 1em;
2020-11-24 18:13:42 +01:00
vertical-align: middle;
2020-11-23 02:56:53 +01:00
}
2020-11-24 21:44:16 +01:00
@media screen and (min-width: $small) {
margin-left: 0;
}
2020-11-23 02:56:53 +01:00
}
.nav-link {
align-self: center;
2020-12-18 19:54:33 +01:00
margin: 0 0.5em;
padding: 0.5em 0;
background-position: center bottom 0.4em;
color: $text-color;
font-family: Orbitron,Montserrat,sans-serif;
2020-11-23 02:56:53 +01:00
&.nav-link-active {
2020-12-17 20:33:07 +01:00
color: $highlight-1;
2020-11-23 02:56:53 +01:00
}
}
2020-11-24 21:44:16 +01:00
@media screen and (min-width: $small) {
flex-direction: row;
hr {
margin: 0 0.5em;
align-self: center;
}
}
2020-11-23 02:06:40 +01:00
}
2020-11-28 00:57:00 +01:00
.date {
font-style: italic;
}
2020-12-26 21:18:45 +01:00
.overflow-x-auto {
overflow-x: auto;
}