82 lines
1.2 KiB
CSS
82 lines
1.2 KiB
CSS
body.auth-pages {
|
|
background-color: #060632;
|
|
}
|
|
|
|
.login-widget {
|
|
width: 30%;
|
|
margin-top: 30%;
|
|
background-color: white;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.remove-validation-custom {
|
|
color: red;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.wrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: stretch;
|
|
}
|
|
|
|
#sidebar {
|
|
min-width: 240px;
|
|
max-width: 240px;
|
|
background: #151515;
|
|
color: #fff;
|
|
z-index: 2;
|
|
transition: all 0.3s;
|
|
-webkit-box-shadow: 2px 0px 4px 0px rgb(0 0 0 / 75%);
|
|
-moz-box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.75);
|
|
box-shadow: 2px 0px 4px 0px rgb(0 0 0 / 75%);
|
|
}
|
|
|
|
#sidebar ul li a {
|
|
padding: 10px;
|
|
font-size: 1.1em;
|
|
display: block;
|
|
color: white;
|
|
}
|
|
|
|
#sidebar a.active {
|
|
color: black;
|
|
background-color: #fff;
|
|
}
|
|
|
|
#sidebar .sidebar-header {
|
|
padding: 15px;
|
|
background: #2c5ed6;
|
|
height: 50px;
|
|
}
|
|
|
|
#sidebar ul.components {
|
|
padding: 0px 0px 20px 0px;
|
|
}
|
|
|
|
#sidebar a.active {
|
|
color: black;
|
|
background-color: #fff;
|
|
}
|
|
|
|
#content {
|
|
width: 100%;
|
|
padding: 50px 0px 0px 0px;
|
|
min-height: 100vh;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
@media only screen and (max-width: 767px) {
|
|
.login-widget {
|
|
width: 50%;
|
|
margin-top: 50%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 400px) {
|
|
.login-widget {
|
|
width: 90%;
|
|
margin-top: 10%;
|
|
}
|
|
}
|