Initial work on Java tab. Added custom range slider.
Also added two more settings tabs. These are experimental and subject to change.
This commit is contained in:
@@ -948,6 +948,11 @@ body, button {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
/* Div to add some space between nav items. */
|
||||
.settingsNavSpacer {
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
/* Content container for the done button. */
|
||||
#settingsNavContentBottom {
|
||||
position: absolute;
|
||||
@@ -1122,6 +1127,33 @@ input:checked + .toggleSwitchSlider:before {
|
||||
transform: translateX(21px);
|
||||
}
|
||||
|
||||
/* Range Slider styles. */
|
||||
.rangeSlider {
|
||||
width: 35%;
|
||||
height: 5px;
|
||||
margin: 15px 0px;
|
||||
background: grey;
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
}
|
||||
.rangeSliderBar {
|
||||
position: absolute;
|
||||
background: #8be88b;
|
||||
width: 50%;
|
||||
height: 5px;
|
||||
border-radius: 3px 0px 0px 3px;
|
||||
}
|
||||
.rangeSliderTrack {
|
||||
position: absolute;
|
||||
top: -7.5px;
|
||||
width: 7px;
|
||||
height: 20px;
|
||||
background: white;
|
||||
border-radius: 3px;
|
||||
left: 50%;
|
||||
cursor: ew-resize;
|
||||
}
|
||||
|
||||
/* * *
|
||||
* Settings View (Account Tab)
|
||||
* * */
|
||||
|
||||
Reference in New Issue
Block a user