Compare commits
2 commits
9501067414
...
6925d7e737
Author | SHA1 | Date | |
---|---|---|---|
6925d7e737 | |||
a68fcbaac9 |
4 changed files with 15 additions and 8 deletions
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"eslint.packageManager": "pnpm",
|
||||
"editor.insertSpaces": false,
|
||||
"editor.detectIndentation": false
|
||||
"editor.detectIndentation": false,
|
||||
}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
<footer aria-label="my websites footer">
|
||||
<hr>
|
||||
<a href="https://git.solarpunk.moe/fries/fries-website">Source Code</a>
|
||||
</footer>
|
||||
|
|
|
@ -20,7 +20,9 @@ import "../styles/global.css";
|
|||
</head>
|
||||
<body>
|
||||
<Navigation />
|
||||
<hr>
|
||||
<slot />
|
||||
<hr>
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
@media (prefers-color-scheme: light) {
|
||||
:root {
|
||||
--background-color: #eff1f5;
|
||||
--text-color: #1e1e2e;
|
||||
--link-color: #1a1adc;
|
||||
--background-color: white;
|
||||
--text-color: #black;
|
||||
--link-color: darkblue;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background-color: #1e1e2e;
|
||||
--text-color: #cdd6f4;
|
||||
--link-color: #8cb8ff;
|
||||
--background-color: black;
|
||||
--text-color: white;
|
||||
--link-color: cyan;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -42,3 +43,8 @@ body {
|
|||
hr {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 1px solid;
|
||||
max-width: 600px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue