1
1
Fork 0
This repository has been archived on 2022-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
natenom-websites/scss/import/www.scss

87 lines
1.4 KiB
SCSS
Raw Normal View History

2020-10-19 09:34:36 +02:00
body {
background: var(--background);
color: var(--text);
2021-02-17 15:00:48 +01:00
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
2020-10-19 09:34:36 +02:00
margin: 0;
2020-10-19 19:32:43 +02:00
a {
color: var(--text);
2021-02-17 15:19:48 +01:00
text-underline-offset: 3px;
2020-10-19 20:07:28 +02:00
&:hover {
2021-02-17 15:19:48 +01:00
text-decoration-style: dotted;
2020-10-19 20:07:28 +02:00
}
2020-10-19 19:32:43 +02:00
}
2021-02-17 15:00:48 +01:00
h1 {
font-size: 39px;
}
h2 {
font-size: 48px;
}
h3 {
font-size: 32px;
}
2020-10-19 19:32:43 +02:00
main {
2021-02-17 15:31:20 +01:00
font-size: 20px;
line-height: 34px;
2020-10-19 19:32:43 +02:00
margin: 80px 20px;
2020-10-23 19:24:17 +02:00
.container {
margin: 0 auto;
2021-02-17 15:31:20 +01:00
max-width: 610px;
2020-10-23 22:08:33 +02:00
}
}
}
//
// ueber
//
main.ueber {
.container {
.contact.kagube.container {
background: var(--background-contrast);
2020-10-23 22:08:33 +02:00
border-radius: 8px;
display: flex;
2020-11-24 21:07:44 +01:00
padding: 15px;
2020-10-23 22:08:33 +02:00
table.contact.table {
font-size: 18px;
white-space: nowrap;
tr {
td {
&:first-of-type {
2020-11-24 21:07:44 +01:00
padding: 5px 20px 5px 0;
2020-10-23 22:08:33 +02:00
text-align: right;
2020-10-23 19:24:17 +02:00
}
}
}
2020-10-23 22:08:33 +02:00
}
img.kagube {
2020-11-24 21:07:44 +01:00
max-height: 150px;
2020-10-23 22:08:33 +02:00
margin: auto;
2020-10-23 19:24:17 +02:00
}
}
2020-10-19 19:32:43 +02:00
}
2020-10-23 21:40:04 +02:00
}
2020-10-19 19:32:43 +02:00
@media (prefers-color-scheme: light) {
main.ueber {
.container {
.contact.kagube.container {
img.kagube {
filter: invert(100%);
}
}
}
}
}
2020-10-19 19:32:43 +02:00
//
2020-10-23 19:24:17 +02:00
// impressum
2020-10-19 19:32:43 +02:00
//
2020-10-23 19:24:17 +02:00
@media (prefers-color-scheme: dark) {
main.impressum {
img {
filter: invert(100%);
}
2020-10-23 19:24:17 +02:00
}
}