0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-25 18:22:42 +00:00

linting toolBar.less

This commit is contained in:
Víctor Losada Hernández
2024-06-02 16:13:04 +02:00
parent c2170dd558
commit a5f453f1e5

View File

@@ -1,68 +1,64 @@
.toolBar {
font-family: 'Open Sans', sans-serif;
position: sticky;
top: 0;
left: 0;
width: 100%;
height: 30px;
background-color: #555;
border-top: 1px solid #666;
border-bottom: 1px solid #666;
color: white;
text-align: center;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
column-gap: 15px;
row-gap: 5px;
flex-wrap: wrap;
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 {
background: #eee;
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
font-weight: normal;
font-size: 16px;
color: #000;
padding: 2px 5px;
border-radius: 7px;
height:1.5em;
}
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;
padding: 0 8px;
color: #ccc;
height: 100%;
.tool {
display : flex;
align-items : center;
height : 100%;
padding : 0 8px;
color : #CCCCCC;
&:hover,&:focus-within {
background-color: #444;
}
&:hover,&:focus-within { background-color : #444444; }
button {
background-color: transparent;
font-family: 'Open Sans', sans-serif;
text-transform: uppercase;
font-weight: normal;
font-size: 11px;
color: #ccc;
padding: 0;
width: 70px;
&:focus-within {
color: white;
font-weight: 800;
height: 100%;
}
&:disabled {
color: #777;
background-color: transparent !important;
}
}
}
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;
}
}
}
}