Add events section (#18)

* Add events section

* Try build fix

* Header improvements

* Update almost everything
This commit is contained in:
d11n
2021-10-01 09:15:19 +02:00
committed by GitHub
parent f9f920654e
commit 86141a9e7c
24 changed files with 419 additions and 88 deletions

View File

@@ -48,13 +48,15 @@ h6 {
}
h1 {
font-size: var(--font-size-xxxl);
font-weight: var(--font-weight-regular);
font-size: var(--font-size-xxl);
color: var(--color-secondary);
margin-bottom: var(--space-l);
}
h2 {
font-size: var(--font-size-xl);
color: var(--color-secondary);
margin-bottom: var(--space-l);
}
h3 {
@@ -66,6 +68,10 @@ h4, h5, h6 {
font-size: var(--font-size-m);
}
section {
margin-bottom: var(--space-xxl);
}
a {
outline: 0;
color: var(--color-accent);
@@ -107,8 +113,24 @@ ul ul {
margin-bottom: 0;
}
table {
border-collapse: collapse;
& th,
& td {
border-bottom: 1px solid var(--color-border-medium);
padding: var(--space-s) var(--space-m);
text-align: left;
}
& td {
border-bottom-color:var(--color-border-light);
}
}
p,
ul {
ul,
table {
& + h2 {
margin-top: var(--space-xl);
}