-
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.
36f7bb4 fancy transitions + improved history navigation
- Loading branch information
1 parent
bedf114
commit 0ed4ed2
Showing
129 changed files
with
3,819 additions
and
5,360 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
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
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,7 +1,7 @@ | ||
@import "./utils.css"; | ||
@import "./components/_barrel.css"; | ||
@import "./snakey.css"; | ||
|
||
@import "./root.css"; | ||
@import "./defaults.css"; | ||
@import "./screen.css"; | ||
@import "./screen/_barrel.css"; | ||
@import "./components/_barrel.css"; |
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
|
||
/* If anything goes into fullscreen mode: */ | ||
::backdrop { | ||
background-color: var(--colour-mainBg); | ||
} | ||
@media (light-level: dim) { | ||
body { | ||
filter: brightness(0.7); | ||
} | ||
} | ||
|
||
html { | ||
scroll-behavior: smooth; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
font-family: | ||
"Trebuchet MS", | ||
"Lucida Sans Unicode", | ||
"MS PGothic" /* Japanese */ | ||
; | ||
font-weight: bold; | ||
color: var(--colour-mainFg); | ||
text-align: center; | ||
transition: filter 0.5s ease-in-out; | ||
} | ||
|
||
:disabled { | ||
cursor: not-allowed; | ||
} | ||
|
||
* { | ||
scrollbar-width: thin; | ||
scrollbar-color: transparent; | ||
scrollbar-track-color: var(--colour-tileBd); | ||
} | ||
::-webkit-scrollbar { | ||
width: 8px; | ||
height: 8px; | ||
} | ||
::-webkit-scrollbar-track { | ||
background-color: transparent; | ||
} | ||
::-webkit-scrollbar-thumb { | ||
background: var(--colour-tileBd); | ||
border-radius: 30px; | ||
border: 2px solid transparent; | ||
} | ||
::-webkit-scrollbar-corner { | ||
visibility: hidden; | ||
} | ||
|
||
table { | ||
border-spacing: 0; | ||
} | ||
button { | ||
font: inherit; | ||
color: inherit; | ||
padding: 0px; | ||
background-color: var(--colour-tileBg); | ||
} | ||
button:disabled { | ||
opacity: 0.7; | ||
} | ||
input { | ||
font: inherit; | ||
text-align: inherit; | ||
box-sizing: border-box; | ||
} |
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
Oops, something went wrong.