2022-10-07 21:38:01 +01:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-09-10 20:55:33 +01:00
|
|
|
body {
|
2022-10-07 21:38:01 +01:00
|
|
|
min-height: 100%;
|
2022-10-07 21:03:57 +01:00
|
|
|
background-color: #444444;
|
2022-09-10 20:55:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-title {
|
|
|
|
text-align: center;
|
2022-10-07 21:38:01 +01:00
|
|
|
font-family: cursive;
|
2022-10-07 21:03:57 +01:00
|
|
|
color: #eeeeee;
|
2022-10-07 21:38:01 +01:00
|
|
|
padding-top: 65px;
|
|
|
|
padding-bottom: 10px;
|
2022-10-07 20:56:41 +01:00
|
|
|
width: 95%;
|
2022-10-07 21:38:01 +01:00
|
|
|
overflow: hidden;
|
2022-10-07 21:11:40 +01:00
|
|
|
margin: auto;
|
2022-09-10 20:55:33 +01:00
|
|
|
}
|
|
|
|
|
2022-10-07 22:37:57 +01:00
|
|
|
.title-image img {
|
|
|
|
max-width: 30%;
|
|
|
|
padding-top: 30px;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
margin-left: 35%;
|
|
|
|
margin-right: 35%;
|
|
|
|
}
|
|
|
|
|
2022-09-10 20:55:33 +01:00
|
|
|
.page-main-content {
|
2022-10-07 20:56:41 +01:00
|
|
|
text-align: center;
|
2022-10-07 21:38:01 +01:00
|
|
|
font-family: sans-serif;
|
2022-10-07 21:03:57 +01:00
|
|
|
color: #f0f0f0f0;
|
2022-10-07 20:56:41 +01:00
|
|
|
width: 95%;
|
2022-10-07 21:38:01 +01:00
|
|
|
overflow: hidden;
|
2022-10-07 21:11:40 +01:00
|
|
|
margin: auto;
|
2022-10-07 20:56:41 +01:00
|
|
|
}
|
|
|
|
|
2022-10-07 22:45:01 +01:00
|
|
|
.page-main-content h2 {
|
|
|
|
padding-top: 45px;
|
|
|
|
}
|
|
|
|
|
2022-10-07 20:56:41 +01:00
|
|
|
footer {
|
2022-10-07 21:11:40 +01:00
|
|
|
background-color: rgb(61, 61, 61);
|
2022-10-07 21:03:57 +01:00
|
|
|
color: #eeeeee;
|
2022-10-07 21:38:01 +01:00
|
|
|
font-family: monospace;
|
2022-10-07 20:56:41 +01:00
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2022-10-10 20:51:35 +01:00
|
|
|
/* The sidebar menu */
|
|
|
|
.sidebar {
|
|
|
|
height: 100%;
|
|
|
|
width: 0; /* Hidden by default */
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1;
|
2022-10-07 20:45:40 +01:00
|
|
|
top: 0;
|
2022-10-10 20:56:03 +01:00
|
|
|
right: 0;
|
2022-10-10 20:51:35 +01:00
|
|
|
background-color: #111;
|
|
|
|
overflow-x: hidden; /* Disable horizontal scroll */
|
|
|
|
padding-top: 60px; /* Place content 60px from the top */
|
|
|
|
transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
|
2022-10-07 20:14:11 +01:00
|
|
|
}
|
|
|
|
|
2022-10-10 20:51:35 +01:00
|
|
|
/* The sidebar links */
|
|
|
|
.sidebar a {
|
|
|
|
padding: 8px 8px 8px 32px;
|
2022-10-07 19:47:14 +01:00
|
|
|
text-decoration: none;
|
2022-10-10 21:00:58 +01:00
|
|
|
text-align: right;
|
2022-10-10 20:51:35 +01:00
|
|
|
font-size: 25px;
|
|
|
|
color: #818181;
|
|
|
|
display: block;
|
|
|
|
transition: 0.3s;
|
2022-10-07 20:14:11 +01:00
|
|
|
}
|
|
|
|
|
2022-10-10 20:51:35 +01:00
|
|
|
/* When you mouse over the navigation links, change their color */
|
|
|
|
.sidebar a:hover {
|
|
|
|
color: #f1f1f1;
|
2022-10-07 20:14:11 +01:00
|
|
|
}
|
|
|
|
|
2022-10-10 20:51:35 +01:00
|
|
|
/* Position and style the close button (top right corner) */
|
|
|
|
.sidebar .close {
|
2022-10-07 20:14:11 +01:00
|
|
|
position: absolute;
|
2022-10-10 20:51:35 +01:00
|
|
|
top: 0;
|
|
|
|
right: 25px;
|
|
|
|
font-size: 36px;
|
|
|
|
margin-left: 50px;
|
2022-10-07 20:14:11 +01:00
|
|
|
}
|
|
|
|
|
2022-10-10 20:58:11 +01:00
|
|
|
/* Position the div containing the open button */
|
|
|
|
.inflate {
|
|
|
|
position: absolute;
|
2022-10-10 20:59:45 +01:00
|
|
|
top: 10px;
|
2022-10-10 20:58:11 +01:00
|
|
|
right: 25px;
|
|
|
|
}
|
|
|
|
|
2022-10-10 20:51:35 +01:00
|
|
|
/* The button used to open the sidebar */
|
|
|
|
.open {
|
|
|
|
font-size: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: #111;
|
2022-10-07 20:14:11 +01:00
|
|
|
color: white;
|
2022-10-10 20:51:35 +01:00
|
|
|
padding: 10px 15px;
|
|
|
|
border: none;
|
2022-10-07 20:14:11 +01:00
|
|
|
}
|
|
|
|
|
2022-10-10 20:51:35 +01:00
|
|
|
.open:hover {
|
|
|
|
background-color: #444;
|
2022-10-07 20:14:11 +01:00
|
|
|
}
|