80 lines
1.5 KiB
CSS
80 lines
1.5 KiB
CSS
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
font-family: lato;
|
|
font-weight: 400;
|
|
}
|
|
|
|
#containerPublic {
|
|
min-height:100vh;
|
|
}
|
|
|
|
.toggle-password{
|
|
background-color: #0000;
|
|
border: none;
|
|
flex-direction: row;
|
|
place-items: center;
|
|
height: 1rem;
|
|
font-size: .875rem;
|
|
line-height: 1.25rem;
|
|
display: flex;
|
|
justify-content: end;
|
|
top: -3.5rem;
|
|
position: relative;
|
|
}
|
|
|
|
.container-scroller {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.page-body-wrapper {
|
|
min-height: calc(100vh - 60px);
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: row;
|
|
flex-direction: row;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
padding-top: 60px;
|
|
|
|
&.full-page-wrapper {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.main-panel {
|
|
transition: width 0.25s ease, margin 0.25s ease;
|
|
width: calc(100% - 235px);
|
|
min-height: calc(100vh - 60px);
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.content-wrapper {
|
|
background: #F5F7FF;
|
|
width: 100%;
|
|
-webkit-flex-grow: 1;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
}
|
|
|
|
.footer {
|
|
background: #fff;
|
|
padding: 10px 2.45rem;
|
|
transition: all 0.25s ease;
|
|
-moz-transition: all 0.25s ease;
|
|
-webkit-transition: all 0.25s ease;
|
|
-ms-transition: all 0.25s ease;
|
|
font-size: calc(0.875rem - 0.05rem);
|
|
font-family: "Nunito", sans-serif;
|
|
font-weight: 400;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
} |