-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added brand new settings! Configure the renderer and more! Added light mode! Added more descriptions to items when you hover over them! Improved the code (i think)
- Loading branch information
Showing
26 changed files
with
1,133 additions
and
559 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Binary file not shown.
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
flex-wrap: nowrap; | ||
align-items: stretch; | ||
min-height: 7vw; | ||
background: black; | ||
} | ||
#keyboard .key | ||
{ | ||
|
This file was deleted.
Oops, something went wrong.
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,130 @@ | ||
.seamless_button{ | ||
font-size: larger; | ||
background: transparent; | ||
margin: auto; | ||
border: none; | ||
user-select: none; | ||
} | ||
|
||
.settings_button | ||
{ | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.seamless_button:hover | ||
{ | ||
cursor: pointer; | ||
text-shadow: 0 0 5px white; | ||
} | ||
|
||
|
||
.gear { | ||
transition: all 0.3s ease; | ||
padding: 5px; | ||
align-content: center; | ||
display: flex; | ||
} | ||
|
||
.settings_button:hover .gear{ | ||
transform: rotate(45deg); | ||
} | ||
|
||
.settings_menu{ | ||
position: absolute; | ||
overflow: scroll; | ||
top: 100%; | ||
right: 0; | ||
width: 30em; | ||
min-width: 30%; | ||
max-width: 100%; | ||
min-height: 100%; | ||
z-index: 256; | ||
display: block; | ||
opacity: 0; | ||
backdrop-filter: blur(2px) brightness(0.5); | ||
background: rgba(3, 3, 3, 0.8); | ||
transition: opacity 100ms ease-in-out; | ||
scroll-behavior: smooth; | ||
overflow-y: auto; | ||
visibility: hidden; | ||
border-radius: 10px; | ||
} | ||
|
||
.settings_menu_light{ | ||
backdrop-filter: blur(2px) brightness(1.5); | ||
background: linear-gradient(45deg, rgba(230, 230, 230, 0.8), rgba(255, 255, 255, 0.8)); | ||
} | ||
|
||
.settings_menu_show{ | ||
visibility: visible !important; | ||
opacity: 1 !important; | ||
} | ||
|
||
.settings_slider { | ||
height: 31px; | ||
-webkit-appearance: none; | ||
margin: 10px 0; | ||
background: transparent; | ||
flex-grow: 1; | ||
} | ||
.settings_slider:focus { | ||
outline: none; | ||
} | ||
|
||
.settings_slider::-webkit-slider-runnable-track { | ||
height: 10px; | ||
cursor: pointer; | ||
box-shadow: 1px 1px 1px #000000; | ||
background: #510087; | ||
border-radius: 5px; | ||
border: 1px solid #000000; | ||
} | ||
.settings_slider::-webkit-slider-thumb { | ||
box-shadow: 1px 1px 1px #000000; | ||
border: 0 solid #000000; | ||
height: 24px; | ||
width: 16px; | ||
border-radius: 50px; | ||
cursor: pointer; | ||
-webkit-appearance: none; | ||
margin-top: -7.5px; | ||
background: transparent; | ||
} | ||
.settings_slider:focus::-webkit-slider-runnable-track { | ||
background: #510087; | ||
} | ||
.settings_slider::-moz-range-track { | ||
height: 10px; | ||
cursor: pointer; | ||
box-shadow: 1px 1px 1px #000000; | ||
background: #510087; | ||
border-radius: 5px; | ||
border: 1px solid #000000; | ||
} | ||
.settings_slider::-moz-range-thumb { | ||
box-shadow: 1px 1px 1px #000000; | ||
border: 0 solid #000000; | ||
height: 24px; | ||
width: 16px; | ||
border-radius: 50px; | ||
cursor: pointer; | ||
} | ||
|
||
.settings_menu select{ | ||
background: transparent; | ||
border: none; | ||
font-size: larger; | ||
} | ||
|
||
.settings_menu select:hover{ | ||
cursor: pointer; | ||
text-shadow: 0 0 5px white; | ||
} | ||
|
||
.settings_group{ | ||
border-radius: 10px; | ||
border: solid #333 1px; | ||
margin: 10px; | ||
padding: 5px; | ||
} |
Oops, something went wrong.