/*
worldGen2D
@author Richard "Rico" Thornberry
@version 1.0
@date February 13, 2018
*/

p {
    color: greenyellow;
    text-align: center;
    font-family: Arial, sans-serif;
}

pre {
    display: block;
    color: deepskyblue;
    text-align: center;
    font-style: normal;
    font-family: Arial, sans-serif;
    white-space: pre;
    margin: 1em 0;
}

ul {
    list-style-type: none;
    color: midnightblue;
    font-family: "Courier New", monospace;
    margin: 0;
    padding: 0;
}

#feedback {
    text-align: left;
    color: deepskyblue;
    font-family: "Courier New", monospace;
}

nav {
    float: left;
    max-width: 160px;
    margin: 0;
    padding: 1em;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /*grid-column-gap: 1em;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 1em;*/
    padding: 0;
    margin: 0;
}

.grid > div {
    background: black;
    /*border: black 1px solid;*/
    padding: 0;
    margin: 0;
}

.bodyTag {
    background: black;
}

.gameCanvas {
    border: slategray 1px solid;
}

.gameTitle {
    border: black 1px solid;
}

/*****************/
/* Slider config */
/*****************/
.slideContainer {
    width: 100%;
}

/* The slider itself */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1;
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}