-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Showing
28 changed files
with
1,878 additions
and
1,170 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,4 +1,4 @@ | ||
@import "normalize.css", "buttons", "fonts", "404", "ads", "about", "account", | ||
"animations", "banners", "caret", "commandline", "core", "footer", "inputs", | ||
"keymap", "leaderboards", "login", "monkey", "nav", "notifications", "popups", | ||
"profile", "scroll", "settings", "test", "z_media-queries"; | ||
"profile", "scroll", "settings", "test", "media-queries"; |
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 |
---|---|---|
@@ -0,0 +1,190 @@ | ||
@media only screen and (max-width: 778px) { | ||
#mediaQueryDebug { | ||
background: #29b6f6; | ||
&::before { | ||
content: "blue"; | ||
} | ||
} | ||
#app { | ||
grid-template-columns: auto 640px auto; | ||
} | ||
#contentWrapper { | ||
max-width: 640px; | ||
} | ||
#testConfig { | ||
display: none; | ||
} | ||
#mobileTestConfigButton { | ||
display: block; | ||
} | ||
#testModesNotice { | ||
font-size: 0.8rem; | ||
} | ||
.page404 { | ||
.content { | ||
grid-template-columns: 300px; | ||
grid-auto-flow: unset; | ||
gap: 1rem; | ||
} | ||
} | ||
.pageTest { | ||
#result { | ||
grid-template-columns: 1fr; | ||
grid-template-areas: | ||
"stats" "chart" | ||
"morestats"; | ||
.stats { | ||
grid-template-columns: 1fr 1fr; | ||
grid-template-areas: "wpm acc"; | ||
justify-items: center; | ||
} | ||
.stats.morestats { | ||
gap: 1rem; | ||
justify-items: start; | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
grid-template-rows: 1fr 1fr 1fr; | ||
} | ||
} | ||
} | ||
.pageAbout { | ||
.triplegroup { | ||
grid-template-columns: 1fr; | ||
} | ||
} | ||
.pageAccount { | ||
.triplegroup.stats { | ||
.title { | ||
font-size: 0.75rem; | ||
} | ||
.val { | ||
font-size: 1.5rem; | ||
} | ||
} | ||
.group.estimatedWordsTyped { | ||
.val { | ||
font-size: 2rem; | ||
} | ||
} | ||
.group.history table thead td:nth-child(7), | ||
.group.history table tbody td:nth-child(7) { | ||
display: none; | ||
} | ||
} | ||
.pageSettings { | ||
.section { | ||
grid-template-columns: 1fr; | ||
grid-template-areas: | ||
"title" | ||
"text" "buttons"; | ||
&.discordIntegration .info { | ||
margin: 1rem 0; | ||
} | ||
.customThemeEdit { | ||
.spacer { | ||
display: none; | ||
} | ||
.customThemeInputs { | ||
grid-template-columns: 1fr 1.5fr; | ||
} | ||
.customThemeButtons { | ||
grid-template-columns: 1fr; | ||
} | ||
} | ||
} | ||
} | ||
.profile { | ||
grid-template-columns: 1fr; | ||
grid-template-rows: auto auto auto; | ||
grid-template-areas: | ||
"info" | ||
"leaderboards" | ||
"pbsTime" | ||
"pbsWords"; | ||
.details.none { | ||
grid-template-areas: | ||
"avAndName" | ||
"typingStats"; | ||
grid-template-columns: 1fr; | ||
.separator { | ||
display: none; | ||
} | ||
.typingStats { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
} | ||
} | ||
.details.bioAndKey { | ||
grid-template-areas: | ||
"avAndName bioAndKey" | ||
"typingStats typingStats"; | ||
grid-template-columns: 1fr 1fr; | ||
.separator { | ||
display: none; | ||
} | ||
.typingStats { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
} | ||
} | ||
.details.soc { | ||
grid-template-areas: | ||
"avAndName" | ||
"typingStats" | ||
"socials"; | ||
grid-template-columns: 1fr; | ||
.separator { | ||
display: none; | ||
} | ||
.typingStats { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
} | ||
.socials { | ||
justify-content: start; | ||
.title { | ||
display: block; | ||
} | ||
.value { | ||
grid-auto-flow: column; | ||
} | ||
} | ||
} | ||
.details.both { | ||
grid-template-areas: | ||
"avAndName bioAndKey" | ||
"typingStats typingStats" | ||
"socials socials"; | ||
grid-template-columns: 1fr 1fr; | ||
.separator { | ||
display: none; | ||
} | ||
.typingStats { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
} | ||
.socials { | ||
height: 100%; //dumb safari fix | ||
justify-content: start; | ||
.title { | ||
display: block; | ||
} | ||
.value { | ||
grid-auto-flow: column; | ||
} | ||
} | ||
} | ||
} | ||
#leaderboardsWrapper #leaderboards .leaderboardsTop { | ||
grid-template-columns: 1fr 1fr; | ||
grid-template-areas: "title title" "subtitle yesterday" "buttons buttons"; | ||
.buttons .timeRange { | ||
grid-template-columns: 1fr 1fr 1fr; | ||
.languageSelect { | ||
grid-column: span 1; | ||
} | ||
} | ||
} | ||
} | ||
|
||
@media (pointer: coarse) and (max-width: 778px) { | ||
#restartTestButton { | ||
display: block !important; | ||
} | ||
} |
Oops, something went wrong.