palmoe.dk/src/assets/main.css

163 lines
2.5 KiB
CSS
Raw Normal View History

2022-11-14 16:44:28 +00:00
@media (prefers-color-scheme: light) {
:root {
--primary: white;
--secondary: white;
--border: grey;
--font-color: black;
--font-inverted: white;
--link-color: blue;
}
}
@media (prefers-color-scheme: dark) {
:root {
--primary: #202020;
--secondary: #2b2b2b;
--font-color: white;
--link-color: tomato;
}
}
html {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
background-color: var(--primary);
box-sizing: border-box;
}
2024-03-02 20:36:00 +00:00
* {
2022-11-14 16:44:28 +00:00
color: var(--font-color);
box-sizing: inherit;
margin: 0px;
padding: 0px;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
}
body > * {
2024-03-02 20:18:33 +00:00
padding: 0 4vw;
2022-11-14 16:44:28 +00:00
}
header {
text-align: center;
}
main {
display: flex;
2024-03-02 20:18:33 +00:00
flex-flow: row;
2024-03-02 20:21:34 +00:00
justify-content: center;
2024-03-02 20:18:33 +00:00
}
@media only screen and (max-width: 600px) {
main {
flex-flow: row wrap-reverse
}
2022-11-14 16:44:28 +00:00
}
2022-11-18 15:03:19 +00:00
article {
2022-11-14 16:44:28 +00:00
display: flex;
2022-11-18 15:03:19 +00:00
flex-flow: row wrap;
2022-11-14 16:44:28 +00:00
justify-content: space-between;
2022-11-18 15:03:19 +00:00
}
2022-11-14 16:44:28 +00:00
2022-11-18 15:03:19 +00:00
article > * {
min-width: 15%;
max-width: 100%;
flex-grow: 1;
2022-11-14 16:44:28 +00:00
}
hr {
color: var(--border);
margin-top: 0.12rem;
margin-bottom: 0.3rem;
}
2022-11-18 15:03:19 +00:00
nav,
footer {
2022-11-14 16:44:28 +00:00
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
}
2022-11-18 15:03:19 +00:00
nav > *,
footer > * {
2022-11-14 16:44:28 +00:00
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
gap: 1rem;
}
2022-11-18 15:03:19 +00:00
footer {
margin-top: auto;
}
2022-11-14 16:44:28 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 1rem;
margin-bottom: 1.2rem;
overflow-wrap: break-word;
word-wrap: break-word;
line-height: 1.1;
font-weight: bold;
}
p {
margin-top: 0rem;
margin-bottom: 1rem;
}
a {
padding-right: 0px;
font-family: monospace;
text-decoration: underline solid var(--link-color) 10%;
text-underline-offset: 3.8px;
}
2024-03-02 20:18:33 +00:00
2022-11-14 16:44:28 +00:00
a:hover {
background-color: var(--link-color);
color: var(--font-inverted);
}
2022-11-18 15:03:19 +00:00
dl {
display: grid;
grid-template-columns: auto 1fr;
grid-gap: 0.2rem 1rem;
}
dt {
font-size: 0.9rem;
font-weight: bold;
}
dd {
font-size: 0.9rem;
}
.profile {
2024-03-02 20:23:15 +00:00
width: 50%;
2024-03-02 20:18:33 +00:00
height: auto;
2022-11-18 15:03:19 +00:00
margin-bottom: 1rem;
border-radius: 10px;
}
.articles {
display: flex;
flex-flow: column nowrap;
2024-03-02 20:21:34 +00:00
max-width: 700px;
2022-11-18 15:03:19 +00:00
}
.info {
min-width: 25%;
display: flex;
flex-flow: column nowrap;
align-items: center;
2024-03-02 20:18:33 +00:00
}