diff options
| author | marcellus <msimon_fr@hotmail.com> | 2024-12-26 20:45:39 +0100 |
|---|---|---|
| committer | marcellus <msimon_fr@hotmail.com> | 2024-12-26 20:45:39 +0100 |
| commit | efd596f77ceb8c9ad3eacdf81856e038ae3718b5 (patch) | |
| tree | 75c036799d1ad732603857fd217683a92caa5783 /style.css | |
| parent | 549908224395a73ae2be8a7b98bcb7c0b57a3944 (diff) | |
fix: colorscheme
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 27 |
1 files changed, 18 insertions, 9 deletions
@@ -10,8 +10,8 @@ }
body {
- background: linear-gradient(74deg, skyblue, pink 65%, salmon);
- padding: 0 12vw;
+ background: linear-gradient(74deg, #fffaf0, #fff6f0 80%, white);
+ padding: 0 7vw;
font-size: 1.1em;
font-family: tinos;
}
@@ -24,7 +24,7 @@ header { }
header {
- filter: drop-shadow(white 2px 2px 0px);
+ filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px 1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px -1px 0 white) drop-shadow(0 0 3px white);
}
header {
@@ -156,17 +156,17 @@ h1:hover,h2:hover { .timestamp {
position: relative;
padding: 5px 15px 5px 35px;
- background: repeating-radial-gradient(circle farthest-corner at calc(0.5em + 8px) 50%, pink, salmon, #f04040);
+ background: repeating-radial-gradient(circle farthest-corner at calc(0.5em + 8px) 50%, lightgray, #858585);
display: inline-block;
width: auto;
border-radius: 40px;
- border: 1px solid pink;
+ border: 1px solid #222;
margin-bottom: 30px;
}
.timestamp span {
font-family: Finkheavy;
- filter: drop-shadow(2px 2px #fff1d0);
+ filter: drop-shadow(2px 2px #fffaf0);
}
.timestamp::before {
@@ -174,9 +174,9 @@ h1:hover,h2:hover { content: '';
width: 1em;
height: 1em;
- background: salmon;
+ background: #7b7b7b;
border-radius: 100%;
- border: 1px solid pink;
+ border: 1px solid #2C2C2C;
left: 7px;
}
@@ -353,9 +353,18 @@ h3.skill, .skill-cats h4 { }
}
-hr {
+hr.section-sep {
+ border: none;
+ border-top: 3px dashed grey;
+ margin-top: 4em;
+ margin-bottom: 4em;
+}
+
+hr.sub-sep {
border: none;
border-top: 2px dashed #f62c2c;
+ margin-left: 10%;
+ margin-right: 10%;
}
.citation {
|
