-
Notifications
You must be signed in to change notification settings - Fork 0
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
a31abd8
commit dd66361
Showing
5 changed files
with
275 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
a, | ||
a:hover { | ||
color: #cdc6bc; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
#app-logo { | ||
display: flex; | ||
justify-content: center; | ||
margin-bottom: 50px; | ||
} | ||
|
||
#logo { | ||
font-family: sans-serif; | ||
transition: all 0.1s ease; | ||
box-shadow: 0 2px #c82931; | ||
font-size: 3rem; | ||
font-weight: 600; | ||
background: #d6686f; | ||
text-align: center; | ||
border-radius: 0.5rem; | ||
border: 2px solid #c82931; | ||
padding: 1rem 2rem; | ||
color: #cdc6bc; | ||
} | ||
|
||
body{ | ||
padding: 2rem; | ||
background-color:#1f4437; | ||
} | ||
|
||
#mousepack-list{ | ||
width: 100%; | ||
margin-right: 10px; | ||
background-color: #3e7a65; | ||
color:#cdc6bc; | ||
} | ||
|
||
#keyboardpack-list{ | ||
width: 100%; | ||
margin-right: 10px; | ||
background-color: #3e7a65; | ||
color:#cdc6bc; | ||
} | ||
|
||
input[type="file"] { | ||
display: none; | ||
text-align: center; | ||
margin: auto; | ||
} | ||
.custom-file-upload { | ||
border: 1px solid #d6686f; | ||
border-radius: 4px; | ||
background: #3e7a65; | ||
display: flex; | ||
padding: 6px 12px; | ||
cursor: pointer; | ||
color: #cdc6bc; | ||
text-decoration: none; | ||
text-align: center; | ||
margin: auto; | ||
} | ||
|
||
#keyboard-volume-value-display{ | ||
font-weight: bold; color:#cdc6bc | ||
} | ||
|
||
#mouse-volume-value-display{ | ||
font-weight: bold; color:#cdc6bc | ||
} | ||
|
||
#logo.pressed { | ||
box-shadow: 0 0; | ||
margin-bottom: -2px; | ||
margin-top: 2px; | ||
} | ||
|
||
.hidden { | ||
display: none; | ||
} | ||
|
||
.divider { | ||
display: block; | ||
width: 100%; | ||
border-bottom: 1px solid #f1f1f1; | ||
margin-top: 1rem; | ||
margin-bottom: 2rem; | ||
} | ||
|
||
#update-available { | ||
padding: 8px 5px; | ||
border: 1px solid #a8ffd6; | ||
background: #161616; | ||
border-radius: 5px; | ||
} | ||
|
||
#soundpack-bug { | ||
padding: 8px 5px; | ||
border: 1px solid #b5b682; | ||
background: #161616; | ||
border-radius: 5px; | ||
} | ||
|
||
.mb-0 { | ||
margin-bottom: 0; | ||
} | ||
|
||
/* The slider itself */ | ||
.slider { | ||
-webkit-appearance: none; | ||
appearance: none; | ||
height: 5px; | ||
background: #5c7da5; | ||
outline: none; | ||
opacity: 0.7; | ||
-webkit-transition: 0.2s; | ||
transition: opacity 0.2s; | ||
border-radius: 5px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
/* Mouse-over effects */ | ||
.slider:hover { | ||
opacity: 1; | ||
/* Fully shown on mouse-over */ | ||
} | ||
|
||
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ | ||
.slider::-webkit-slider-thumb { | ||
-webkit-appearance: none; | ||
/* Override default look */ | ||
appearance: none; | ||
width: 20px; | ||
/* Set a specific slider handle width */ | ||
height: 20px; | ||
/* Slider handle height */ | ||
background: #1E1EB3; | ||
/* Green background */ | ||
cursor: pointer; | ||
/* Cursor on hover */ | ||
border-radius: 50%; | ||
} | ||
|
||
.slider::-moz-range-thumb { | ||
width: 20px; | ||
/* Set a specific slider handle width */ | ||
height: 20px; | ||
/* Slider handle height */ | ||
background: #1E1EB3; | ||
/* Green background */ | ||
cursor: pointer; | ||
/* Cursor on hover */ | ||
border-radius: 50%; | ||
} | ||
|
||
table tr td { | ||
border-bottom: 0; | ||
} | ||
|
||
table { | ||
margin-bottom: 0; | ||
} |
Oops, something went wrong.