update saturation
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Michael Zhang 2024-09-14 23:40:35 -05:00
parent 126f3357bb
commit 9d073a0be6
3 changed files with 13 additions and 7 deletions

View file

@ -28,7 +28,7 @@ import portrait from "../assets/self.png";
<div class="bio"> <div class="bio">
<ShortBio /> <ShortBio />
<a href="/about">More &raquo;</a> <a href="/about/">More &raquo;</a>
</div> </div>
</div> </div>
</nav> </nav>

View file

@ -43,7 +43,7 @@
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
$backgroundColor: #202030; $backgroundColor: #202030;
$textColor: #cdcdcd; $textColor: #cdcdcd;
$linkColor: lightskyblue; $linkColor: hsl(216, 82%, 75%);
$linkHoverColor: #202749; $linkHoverColor: #202749;
:root { :root {

View file

@ -77,6 +77,10 @@ small {
color: var(--small-text-color); color: var(--small-text-color);
} }
ul li {
margin-bottom: 6px;
}
// Letter spacing // Letter spacing
body { body {
@ -116,6 +120,7 @@ pre > code {
@media screen and (max-width: variables.$breakpoint) { @media screen and (max-width: variables.$breakpoint) {
.flex-wrapper { .flex-wrapper {
flex-direction: column; flex-direction: column;
.container { .container {
padding: 5px 20px; padding: 5px 20px;
} }
@ -125,6 +130,7 @@ pre > code {
@media screen and (min-width: variables.$breakpoint) { @media screen and (min-width: variables.$breakpoint) {
.flex-wrapper { .flex-wrapper {
flex-direction: row; flex-direction: row;
.container { .container {
padding: 32px 40px 5px 40px; padding: 32px 40px 5px 40px;
} }