@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Noto+Serif');
/*
   Table Times Tabletop Style Sheet
   Author: Koh Heng Woon
   Date:   7 May 2019
   
   Filename: Styles.css

*/

/* html and Body Styles */

html{ /*Cool stuff in the background*/
    background-color: #ffdf5d;
    background-image: url("../images/dice.png");
    background-repeat: repeat;
}
body{ 
    color:#3a0201;
    background-color: rgba(255, 255, 255, 0.7);/*Slightly transparent white bg*/
}

/*Header styles*/
body > header{
    background-color: #fe9900;
    color: #ffffff;
    -webkit-text-stroke: 0.5px #ffffff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.5em;
}

body > header > img{ /*Logo*/
    width: 100px; 
    height: 100px;
    padding-bottom: 10px;
    border-radius: 30px;
}

#top > h1{ /*Table Times Tabletop*/
    font-family: 'Papyrus', serif; /*Old vibes, great for board games*/
    padding-top: 15px;
    line-height: 20px;
    font-size: 1.5em;
}

nav#top{
    padding: 1em;
}

nav#top a:link{
    font-size: 0.6em;
    font-family: 'Comic Sans MS', sans-serif;
    padding: 5px 0 0 7px;
    text-decoration: none;
    color: #ffffff;
}
nav#top a:visited{
    color: #fff7d7;
}
nav#top a:hover, nav#top a:focus{
    color: #ffffff;
    text-decoration: underline;
}

/* Navigation (Main) Styles */
nav#side {
    background-color: #fffae9;
    border: 2px solid #fe9900;
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 1.17em;
    line-height: 1.5em;
    border-radius: 5px;
}
#side > #searchbutton{/*Doesn't actually work but it looks pretty*/
    display: inline-block;
    color: #fe9900;
    background-color: #ffffff;
    padding: 2px;
    border: 1.7px solid #fe9900;
    border-radius: 20px;
    cursor: pointer;
}
#side > #searchbutton:hover{
    color: #ffce00;
    border-color: #ffce00;
}

nav#side > h2{
    font-family: Papyrus, serif;
    font-size: 1.2em;
    padding-top: 10px;
    text-decoration: underline;
}
nav#side > li{
    line-height: 1.2em;
}
nav#side > ul{
    list-style-position: inside;
}

nav#side a:link{
    text-decoration: none;
    color: #fe9900;
}
nav#side a:visited{
    color: #fe9900;
}
nav#side a:hover, nav.left a:focus{
    color: #fe9900;
    text-decoration: underline;
}

/*About*/
.FAQ > h3{
    color: #fe9900;
    font-family: 'IBM Plex Mono', monospace;
}

/* Blog Posts Styles */
article { /* Boxes on the right column of the page */
    color: #3a0201;
    background-color: #fffae9;
    border: 2px solid #fe9900;
    font-family: 'Noto Serif', serif;
    border-radius: 20px; /*Rounds the corners*/
}
article> h2{
    color: #fe9900;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 2em;
    line-height: 1.5em;
    font-weight: 9000;
    padding-bottom: 5px;
}

.cover{
    border-radius: 7px;
    border-width: 10px;
    border: 2px solid #fe9900;
}

.postcontent{
    color: #382322;
    background-color: #fff4c6;
    box-shadow: 0 2px 8px 0 rgba(116, 107, 59, 0.6);
}

article.post a:link{
    color: #fe9900;
    text-decoration: none;
}
article.post a:visited{
    color: #fe9900;
    text-decoration: none;
}
article.post a:hover, article.post a:focus{
    color: #ffce00;
    text-decoration: underline;
}

/* Contact */
.container{
    color: #3a0201;
    background-color: #fff7d7; 
    font-family: 'IBM Plex Mono', monospace;
    text-decoration: bold;
}

.container>h2{
    color: #fe9900;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 2em;
    line-height: 1.5em;
}

input[type=text], input[type=email], select, textarea { /*Text input boxes*/
    color: #3a0201;
    width: 100%;
    padding: 7px 20px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ffce00;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

input[type=checkbox], input[type = radio] { 
    font-family: 'IBM Plex Mono', monospace;
    margin: 0px;
    width: 15px;
}

input[type=checkbox], input[type=radio]{
    height: 20px;
    width: 20px;
}

#choice1{
    left:50%;
}

input[type=submit] { /*Submit button*/
    width: 100%;
    background-color: #fe9900;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

input[type=submit]:hover {
    background-color: #ffce00;
}

fieldset{
    background-color: #ffffff;
    box-shadow: 0 2px 8px 0 rgba(116, 107, 59, 0.6);
}

.postcontent#results{
    font-family: 'Noto Serif', serif;
    line-height: 1.7em;
}

/* Footer Styles */
footer{
    background-color:#fe9900;
    background-image: url("../images/table.png");
    background-size: 100% 40%;
    background-position: bottom center;
    background-repeat: no-repeat;
    color: #ffffff
}

#leftfoot, #rightfoot{
    background-color: rgb(255,247,215, 0.4);
    border-radius: 10px;
}

nav.foot {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5em;
}

nav.foot a:link{
    text-decoration: none;
    color: #ffffff;
}
nav.foot a:visited{
    color: #ffffff;
}
nav.foot a:hover, nav.left a:focus{
    color: #ffffff;
    text-decoration: underline;
}