aboutsummaryrefslogtreecommitdiff
path: root/scss/main.scss
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-10 00:58:29 +0100
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-10 00:58:29 +0100
commit7d6f278ebf42442e3909eb326be5a7c8ba20412a (patch)
treea8a024cae60436437d790a889c59e0b212ba17c5 /scss/main.scss
parent6a177e466334086b26689429e3da5a8bfba449de (diff)
feat(legal): credits page
Diffstat (limited to 'scss/main.scss')
-rw-r--r--scss/main.scss29
1 files changed, 28 insertions, 1 deletions
diff --git a/scss/main.scss b/scss/main.scss
index 31e7246..ca803b2 100644
--- a/scss/main.scss
+++ b/scss/main.scss
@@ -16,9 +16,13 @@ body {
color: var(--text-color);
}
+a {
+ color: var(--text-color);
+}
+
.credits {
position: absolute;
- bottom: 1em;
+ bottom: 0;
display: flex;
gap: 1em;
font-size: 16px;
@@ -32,6 +36,18 @@ main {
padding: 2rem;
border-radius: 32px;
box-shadow: 0 0 70px 2px rgba(0,0,0,0.75);
+ & h1, h2, h3 {
+ margin: 0;
+ }
+}
+
+h1, h2, h3 {
+ margin-bottom: 1rem;
+ margin-top: 2rem;
+}
+
+p {
+ margin-bottom: 0.5rem;
}
h1 {
@@ -42,6 +58,10 @@ h2 {
font-size: 2rem;
}
+h3 {
+ font-size: 1.5rem;
+}
+
.presentation {
position: relative;
display: flex;
@@ -58,6 +78,9 @@ h2 {
align-items: center;
justify-content: center;
gap: 0.5rem;
+ & p {
+ margin: 0;
+ }
}
& figure {
display: inline;
@@ -104,3 +127,7 @@ h2 {
}
}
}
+
+.credits-legal {
+ width: 70%;
+}