60 lines
745 B
SCSS
60 lines
745 B
SCSS
body {
|
|
background-color: #f8f9fa;
|
|
display:flex;
|
|
flex-direction:row;
|
|
}
|
|
|
|
#main-area {
|
|
flex:1;
|
|
display:flex;
|
|
flex-direction:column;
|
|
min-height: 100vh;
|
|
|
|
&>.container {
|
|
flex:1;
|
|
}
|
|
}
|
|
|
|
.admin-sidebar {
|
|
min-height:100vh;
|
|
width:300px;
|
|
|
|
ul {
|
|
margin:0;
|
|
padding:0;
|
|
margin-bottom:3rem;
|
|
|
|
}
|
|
|
|
a {
|
|
padding:1.5rem;
|
|
padding-top:1rem;
|
|
padding-bottom:1rem;
|
|
display:block;
|
|
color:white;
|
|
|
|
&:hover {
|
|
background-color:rgba(255,255,255,0.2);
|
|
text-decoration:none;
|
|
}
|
|
|
|
i.fa {
|
|
display:inline-block;
|
|
width:1.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Password-specific stuff
|
|
|
|
.card-connection {
|
|
margin: auto;
|
|
max-width: 360px;
|
|
}
|
|
|
|
.container-password {
|
|
flex:1;
|
|
display:flex;
|
|
justify-content: center;
|
|
width:100%;
|
|
}
|