fredboniface.co.uk/style/styles.css

168 lines
2.9 KiB
CSS

html {
height: 100%;
}
body {
min-height: 100%;
background-color: #444444;
}
.page-title {
text-align: center;
font-family: oxygen, sans-serif;
font-weight: 700;
color: #eeeeee;
padding-top: 65px;
padding-bottom: 10px;
width: 95%;
overflow: hidden;
margin: auto;
margin-bottom: 20px;
}
.error-title {
font-family: silkscreenregular, 'Courier New', Courier, monospace;
}
.title-image img {
max-width: 30%;
padding-top: 30px;
padding-bottom: 30px;
margin-left: 35%;
margin-right: 35%;
}
.page-main-content {
text-align: center;
font-family: oxygen, sans-serif;
font-weight: 300;
color: #f0f0f0f0;
width: 95%;
overflow: hidden;
margin: auto;
}
.page-main-content h2 {
padding-top: 45px;
}
.social-links img {
max-width: 58px;
padding: 10px;
}
a.download-link {
text-decoration: none;
color: #242121;
background-color: #d1caca;
padding: 10px;
border-radius: 10px;
text-align: center;
margin: 7px;
}
footer {
background-color: rgb(61, 61, 61);
color: #eeeeee;
font-family: monospace;
text-align: center;
width: 100%;
position: fixed;
bottom: 0;
left: 0;
}
/* The sidebar menu */
.sidebar {
height: 100%;
width: 0; /* Hidden by default */
position: fixed;
padding-top: 90px;
z-index: 1;
top: 0;
right: 0;
background-color: #111;
overflow-x: hidden;
overflow-y: hidden;
transition: 0.7s; /* 0.5 second transition effect to slide in the sidebar */
}
/* The sidebar links */
.sidebar a {
padding: 8px 8px 8px 8px;
margin-left: 20px;
margin-top: 10px;
font-family: oxygen, sans-serif;
font-weight: 300;
text-decoration: none;
text-align: right;
font-size: 25px;
color: #bcbcbc;
display: block;
transition: 0.7s;
}
/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.sidebar .close {
position: absolute;
top: -10px;
right: 20px;
font-size: 36px;
margin-left: 50px;
}
/* Position the div containing the open button */
.inflate {
position: absolute;
top: 10px;
right: 10px;
}
/* The button used to open the sidebar */
.open {
font-size: 20px;
cursor: pointer;
background-color: rgba(0, 0, 0, 0);
color: white;
padding: 10px 15px;
border: none;
}
.open:hover {
background-color: #444;
}
/* Screens Wider than 600px */
@media screen and (min-width: 600px) {
/*Hide sidebar open/close buttons*/
.inflate {display: none;}
.sidebar .close {display: none;}
/*Change Menu Dimensions*/
.sidebar {
width: 100%;
height: 14px;
padding-top: 5px;
padding-bottom: 40px;
padding-left: 50px;
}
/* Float links */
.sidebar a {
float: left;
margin-top: 2px;
}
/*Provice space for top menu*/
.page-title {padding-top: 90px}
/*Increase social link image size*/
.social-links img {max-width: 75px;}
}