mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-27 07:12:39 +00:00
64 lines
1.4 KiB
Plaintext
64 lines
1.4 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 {
|
|
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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
} |