mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-29 02:32:37 +00:00
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
.homePage{
|
|
position : relative;
|
|
a.floatingNewButton{
|
|
.animate(background-color);
|
|
position : absolute;
|
|
display : block;
|
|
right : 70px;
|
|
bottom : 50px;
|
|
z-index : 100;
|
|
z-index : 5001;
|
|
padding : 1em;
|
|
background-color : @orange;
|
|
font-size : 1.5em;
|
|
color : white;
|
|
text-decoration : none;
|
|
box-shadow : 3px 3px 15px black;
|
|
&:hover{
|
|
background-color : darken(@orange, 20%);
|
|
}
|
|
}
|
|
.floatingSaveButton{
|
|
.animateAll();
|
|
position : absolute;
|
|
display : block;
|
|
right : 200px;
|
|
bottom : 70px;
|
|
z-index : 100;
|
|
z-index : 5000;
|
|
padding : 0.8em;
|
|
cursor : pointer;
|
|
background-color : @blue;
|
|
font-size : 0.8em;
|
|
color : white;
|
|
text-decoration : none;
|
|
box-shadow : 3px 3px 15px black;
|
|
&:hover{
|
|
background-color : darken(@blue, 20%);
|
|
}
|
|
&.show{
|
|
right : 350px;
|
|
}
|
|
}
|
|
|
|
.navItem.save{
|
|
background-color: @orange;
|
|
&:hover{
|
|
background-color: @green;
|
|
}
|
|
}
|
|
}
|