You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
2.2 KiB
SCSS
118 lines
2.2 KiB
SCSS
body {
|
|
font-family: sans-serif;
|
|
/*text-align: center;*/
|
|
}
|
|
|
|
/* The side navigation menu */
|
|
.sidebar {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 200px;
|
|
background-color: #fdc476;
|
|
position: fixed;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
/* Sidebar links */
|
|
.sidebar a {
|
|
display: block;
|
|
color: black;
|
|
padding: 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Active/current link */
|
|
.sidebar a.active {
|
|
background-color: #04AA6D;
|
|
color: white;
|
|
}
|
|
|
|
/* Links on mouse-over */
|
|
.sidebar a:hover:not(.active) {
|
|
background-color: #555;
|
|
color: white;
|
|
}
|
|
|
|
/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
|
|
div.content {
|
|
margin-left: 200px;
|
|
padding: 1px 16px;
|
|
/*height: 1000px;*/
|
|
}
|
|
|
|
/* On screens that are less than 700px wide, make the sidebar into a topbar */
|
|
@media screen and (max-width: 700px) {
|
|
.sidebar {
|
|
width: 100%;
|
|
height: auto;
|
|
position: relative;
|
|
}
|
|
.sidebar a {float: left;}
|
|
div.content {margin-left: 0;}
|
|
}
|
|
|
|
/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
|
|
@media screen and (max-width: 400px) {
|
|
.sidebar a {
|
|
text-align: center;
|
|
float: none;
|
|
}
|
|
}
|
|
|
|
.topbar {
|
|
overflow: hidden;
|
|
background-color: #fdc476;
|
|
position: fixed; /* Set the navbar to fixed position */
|
|
top: 0; /* Position the navbar at the top of the page */
|
|
width: 100%; /* Full width */
|
|
text-align: center;
|
|
}
|
|
|
|
.main {
|
|
margin-top: 60px; /* Add a top margin to avoid content overlay */
|
|
}
|
|
|
|
/* modal */
|
|
|
|
.modal {
|
|
display: block;
|
|
position: fixed; /* Stay in place */
|
|
z-index: 1; /* Sit on top */
|
|
padding-top: 100px; /* Location of the box */
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%; /* Full width */
|
|
height: 100%; /* Full height */
|
|
overflow: auto; /* Enable scroll if needed */
|
|
background-color: rgb(0,0,0); /* Fallback color */
|
|
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
|
}
|
|
|
|
.modal-hidden {
|
|
display: none; /* Hidden by default */
|
|
}
|
|
|
|
/* Modal Content */
|
|
.modal-content {
|
|
background-color: #fefefe;
|
|
margin: auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 70%;
|
|
}
|
|
|
|
/* The Close Button */
|
|
.close {
|
|
color: #aaaaaa;
|
|
float: right;
|
|
font-size: 25px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.close:hover,
|
|
.close:focus {
|
|
color: #000;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
} |