2017-05-08 21:56:08 -07:00
|
|
|
/*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Fonts *
|
|
|
|
* *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/* Primary font for the application, found on http://www.dafont.com/ringbearer.font */
|
2017-04-22 14:20:23 -07:00
|
|
|
@font-face {
|
|
|
|
font-family: ringbearer;
|
|
|
|
src: url('../fonts/ringbearer.ttf');
|
|
|
|
}
|
|
|
|
|
2017-05-08 21:56:08 -07:00
|
|
|
/* Logger font, found on https://fonts.google.com/specimen/Inconsolata?selection.family=Inconsolata */
|
|
|
|
@font-face {
|
|
|
|
font-family: inconsolata;
|
|
|
|
src: url('../fonts/Inconsolata-Bold.ttf');
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Body *
|
|
|
|
* *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2017-05-12 01:30:55 -07:00
|
|
|
/* Reset body, html, and div presets. */
|
2017-05-08 21:56:08 -07:00
|
|
|
body, html, div {
|
2017-04-22 14:20:23 -07:00
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2017-04-22 17:59:26 -07:00
|
|
|
background: url('../images/BrownWithWignette.jpg') no-repeat center center fixed;
|
2017-04-22 14:20:23 -07:00
|
|
|
background-size: cover;
|
2017-05-08 21:56:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Header *
|
|
|
|
* *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2017-05-12 01:30:55 -07:00
|
|
|
/* Main div header container. */
|
2017-05-08 21:56:08 -07:00
|
|
|
#header_container {
|
|
|
|
background-color: black;
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 0px;
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: thick solid #a02d2a;
|
|
|
|
border-bottom-width: 5px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Div container for the seal image. */
|
|
|
|
#header_seal_container {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Div container for the header image. */
|
|
|
|
#header_img_container {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Seal and header images. */
|
|
|
|
#header_seal,
|
|
|
|
#header_img {
|
|
|
|
height: 75px;
|
|
|
|
width: auto;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-05-12 01:30:55 -07:00
|
|
|
/* Div container for the social buttons. */
|
2017-05-08 21:56:08 -07:00
|
|
|
#header_social_container {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0px;
|
2017-05-12 01:30:55 -07:00
|
|
|
margin-bottom: 5px;
|
2017-05-08 21:56:08 -07:00
|
|
|
}
|
|
|
|
|
2017-05-12 01:30:55 -07:00
|
|
|
/* Social buttons. */
|
2017-05-08 21:56:08 -07:00
|
|
|
.header_social_img {
|
|
|
|
height: 25px;
|
|
|
|
width: auto;
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
2017-05-12 01:30:55 -07:00
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Left Body Container *
|
|
|
|
* *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#body_left_container {
|
|
|
|
width: 25%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Right Body Container *
|
|
|
|
* *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#body_right_container {
|
|
|
|
width: 75%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mtoggle_button {
|
|
|
|
text-align:centre;
|
|
|
|
margin:5px 2px;
|
|
|
|
padding:0.4em 3em;
|
|
|
|
color:#000;
|
|
|
|
background-color:#FFF;
|
|
|
|
border-radius:10px;
|
|
|
|
display:inline-block;
|
|
|
|
border:solid 1px #CCC;
|
|
|
|
cursor:pointer;
|
2017-04-22 14:20:23 -07:00
|
|
|
}
|