Skip to content

Commit

Permalink
Create main.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulNeff1138 authored Sep 20, 2023
1 parent bd118e2 commit 1372ab6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Jekyll/_sass/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
$pageLtBGcls: #f7f7f7;
$pageDkBGcls: #171717;
:root {
color-scheme: light dark;
--pageBGcls: #{$pageLtBGcls};
@media (prefers-color-scheme: dark) {
--pageBGcls: #{$pageDkBGcls};
}
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: 500;
}
.current {
color: #0cf;
}
body {
background-color: var(--pageBGcls);
}
#DemoSVG {
max-width: 50vw;
margin: 0 auto;
}
nav a {
margin-right: 2em;
font-weight: 800;
}

0 comments on commit 1372ab6

Please sign in to comment.