mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-29 06:52:41 +00:00
94 lines
2.0 KiB
Plaintext
94 lines
2.0 KiB
Plaintext
.toolBar {
|
|
position : sticky;
|
|
top : 0;
|
|
left : 0;
|
|
z-index : 1;
|
|
display : flex;
|
|
flex-wrap : wrap;
|
|
row-gap : 5px;
|
|
column-gap : 15px;
|
|
align-items : center;
|
|
justify-content : center;
|
|
width : 100%;
|
|
height : 30px;
|
|
font-family : 'Open Sans', sans-serif;
|
|
color : white;
|
|
text-align : center;
|
|
background-color : #555555;
|
|
border-top : 1px solid #666666;
|
|
border-bottom : 1px solid #666666;
|
|
|
|
input {
|
|
position: relative;
|
|
height : 1.5em;
|
|
padding : 2px 5px;
|
|
font-family : 'Open Sans', sans-serif;
|
|
font-size : 16px;
|
|
font-weight : normal;
|
|
color : #000000;
|
|
text-transform : uppercase;
|
|
background : #EEEEEE;
|
|
border-radius : 7px;
|
|
|
|
&.slider {
|
|
appearance: none;
|
|
width: 100%;
|
|
height: 5px;
|
|
background: #d3d3d3;
|
|
outline: none;
|
|
isolation: isolate;
|
|
|
|
&::-webkit-slider-thumb {
|
|
appearance: none;
|
|
width: 7px;
|
|
height: 15px;
|
|
background-color: rgb(39, 174, 96);
|
|
cursor: pointer;
|
|
}
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 33.33%;
|
|
transform: translate(-50%, -50%);
|
|
width: 7px;
|
|
height: 15px;
|
|
background-color: #d3d3d3;
|
|
z-index: -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.tool {
|
|
display : flex;
|
|
align-items : center;
|
|
height : 100%;
|
|
padding : 0 8px;
|
|
color : #CCCCCC;
|
|
|
|
&:hover,&:focus-within { background-color : #444444; }
|
|
|
|
button {
|
|
width : 70px;
|
|
padding : 0;
|
|
font-family : 'Open Sans', sans-serif;
|
|
font-size : 11px;
|
|
font-weight : normal;
|
|
color : #CCCCCC;
|
|
text-transform : uppercase;
|
|
background-color : transparent;
|
|
|
|
&:focus-within {
|
|
height : 100%;
|
|
font-weight : 800;
|
|
color : white;
|
|
}
|
|
|
|
&:disabled {
|
|
color : #777777;
|
|
background-color : transparent !important;
|
|
}
|
|
}
|
|
}
|
|
} |