This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8f45ec
commit 3173160
Showing
5 changed files
with
127 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,41 @@ | ||
/* Page styles for the demo page */ | ||
|
||
body { | ||
--body-background: #eeeeee; | ||
--footer-color: #555555; | ||
--text-color: #000000; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
body { | ||
--body-background: #000000; | ||
--footer-color: #807f7f; | ||
--text-color: #ececec; | ||
} | ||
} | ||
|
||
body { | ||
margin: 0; | ||
color: var(--text-color); | ||
font-size: 15px; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", | ||
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | ||
line-height: 1.5; | ||
background: #eeeeee; | ||
} | ||
|
||
main { | ||
max-width: 38rem; | ||
margin: auto; | ||
padding: 3rem; | ||
background: #ffffff; | ||
background: var(--body-background); | ||
} | ||
|
||
footer { | ||
margin: 1.5rem 0; | ||
color: #555555; | ||
font-size: 80%; | ||
text-align: center; | ||
} | ||
|
||
a { | ||
color: inherit; | ||
.footer-link { | ||
color: var(--footer-color); | ||
font-size: 90%; | ||
} | ||
|
||
.notebook { | ||
max-width: 42rem; | ||
margin: auto; | ||
padding: 3rem 3rem 3rem 2rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters