mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-25 15:41:47 +00:00
44 lines
799 B
Plaintext
44 lines
799 B
Plaintext
|
|
table.brewTable{
|
|
th{
|
|
padding : 10px;
|
|
background-color : fade(@blue, 20%);
|
|
font-weight : 800;
|
|
}
|
|
tr:nth-child(even){
|
|
background-color : fade(@green, 10%);
|
|
}
|
|
tr.isEmpty{
|
|
background-color : fade(@red, 30%);
|
|
}
|
|
td{
|
|
min-width : 100px;
|
|
padding : 10px;
|
|
text-align : center;
|
|
|
|
/*
|
|
&.preview{
|
|
position : relative;
|
|
&:hover{
|
|
.content{
|
|
display : block;
|
|
}
|
|
}
|
|
.content{
|
|
position : absolute;
|
|
display : none;
|
|
top : 100%;
|
|
left : 0px;
|
|
z-index : 1000;
|
|
max-height : 500px;
|
|
width : 300px;
|
|
padding : 30px;
|
|
background-color : white;
|
|
font-family : monospace;
|
|
text-align : left;
|
|
pointer-events : none;
|
|
}
|
|
}
|
|
*/
|
|
}
|
|
} |