New Style #24

Merged
jakob.scheid merged 19 commits from feature/reworked-style into main 2026-05-06 15:51:57 +02:00
Showing only changes of commit cc38b00033 - Show all commits
+10 -1
View File
@@ -2,12 +2,22 @@ body {
margin: 0; margin: 0;
min-height: 100vh; min-height: 100vh;
background: linear-gradient(135deg, #ffffff 0%, #E6F3FC 100%); background: linear-gradient(135deg, #ffffff 0%, #E6F3FC 100%);
font-size: 16px;
} }
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

Not necessary due to line 3 (min-height: 100vh;).

Not necessary due to line 3 (`min-height: 100vh;`).
html { html {
height: 100%; height: 100%;
} }
.content-background {
background:
radial-gradient(ellipse at 40% 60%, rgba(255,255,255,0.55) 0%, transparent 75%),
linear-gradient(160deg, #c8d8f0, #7aa0d8, #5077C7, #dce8f8);
height: 300px;
display: flex;
flex-direction: column;
}
.global-header { .global-header {
text-align: center; text-align: center;
display: flex; display: flex;
@@ -19,7 +29,6 @@ html {
.global-header h1 { .global-header h1 {
display: inline-block; display: inline-block;
margin: 0; margin: 0;
padding: 0;
line-height: 1; line-height: 1;
background: linear-gradient(to right, #689BDB, #5F8DDC, #5077C7, #4562BE, #374FA5, #22298F); background: linear-gradient(to right, #689BDB, #5F8DDC, #5077C7, #4562BE, #374FA5, #22298F);
-webkit-background-clip: text; -webkit-background-clip: text;