118 lines
2.3 KiB
CSS
118 lines
2.3 KiB
CSS
.logins {
|
|
height: 100px;
|
|
width: 500px;
|
|
margin: 5px;
|
|
}
|
|
|
|
.login_google {
|
|
width: 200px;
|
|
}
|
|
|
|
.login_email {
|
|
width: 200px;
|
|
}
|
|
|
|
/* The sidebar menu */
|
|
.sidenav {
|
|
height: 100%; /* Full-height: remove this if you want "auto" height */
|
|
width: 160px; /* Set the width of the sidebar */
|
|
position: fixed; /* Fixed Sidebar (stay in place on scroll) */
|
|
z-index: 1; /* Stay on top */
|
|
top: 0; /* Stay at the top */
|
|
left: 0;
|
|
background-color: #111; /* Black */
|
|
overflow-x: hidden; /* Disable horizontal scroll */
|
|
padding-top: 20px;
|
|
}
|
|
|
|
/* The navigation menu links */
|
|
.sidenav a {
|
|
padding: 6px 8px 6px 16px;
|
|
text-decoration: none;
|
|
font-size: 25px;
|
|
color: #818181;
|
|
display: block;
|
|
}
|
|
|
|
/* When you mouse over the navigation links, change their color */
|
|
.sidenav a:hover {
|
|
color: #f1f1f1;
|
|
}
|
|
|
|
/* Style page content */
|
|
.main {
|
|
margin-left: 160px; /* Same as the width of the sidebar */
|
|
padding: 30px 10px;
|
|
}
|
|
|
|
/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
|
|
@media screen and (max-height: 450px) {
|
|
.sidenav {padding-top: 15px;}
|
|
.sidenav a {font-size: 18px;}
|
|
}
|
|
|
|
|
|
/* slider */
|
|
|
|
/* The switch - the box around the slider */
|
|
.switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 38px;
|
|
height: 24px;
|
|
}
|
|
|
|
/* Hide default HTML checkbox */
|
|
.switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
/* The slider */
|
|
.slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #2196F3;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
.slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 18px;
|
|
width: 18px;
|
|
right: 3px;
|
|
bottom: 3px;
|
|
background-color: white;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
input:checked + .slider {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
input:focus + .slider {
|
|
box-shadow: 0 0 1px #ccc;
|
|
}
|
|
|
|
input:checked + .slider:before {
|
|
-webkit-transform: translateX(-13px);
|
|
-ms-transform: translateX(-13px);
|
|
transform: translateX(-13px);
|
|
}
|
|
|
|
/* Rounded sliders */
|
|
.slider.round {
|
|
border-radius: 24px;
|
|
}
|
|
|
|
.slider.round:before {
|
|
border-radius: 50%;
|
|
} |