39 lines
883 B
SCSS
Executable File
39 lines
883 B
SCSS
Executable File
/* You can add global styles to this file, and also import other style files */
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
// 64px for the header and 15px for a litle margin.
|
|
padding-top: 90px;
|
|
padding-bottom: 30px;
|
|
display: flex;
|
|
position: relative;
|
|
flex-direction: column;
|
|
justify-content:space-between;
|
|
min-height: 100%;
|
|
}
|
|
|
|
/* ***** Floating card button ***** */
|
|
.btn-card-floating {
|
|
border-radius: 50%;
|
|
width: 47px;
|
|
height: 47px;
|
|
margin: -23px 20px;
|
|
margin-left: auto;
|
|
line-height: 0;
|
|
display: inline-block;
|
|
text-align: center;
|
|
line-height: 47px;
|
|
padding-left: 2px;
|
|
z-index: 1;
|
|
box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
|
|
background-color: #3f51b5;
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
}
|
|
|
|
.btn-card-floating:hover {
|
|
box-shadow: 0 8px 17px 0 rgba(0,0,0,.2), 0 6px 20px 0 rgba(0,0,0,.19);
|
|
}
|
|
/* ***** End of floating card button ***** */
|