@charset "utf-8";

@font-face {
    font-family: 'GenShinGothic';
    src: url('./fonts/GenShinGothic-Light.eot');
    src: url('./fonts/GenShinGothic-Light.woff2') format('woff2'),
        url('./fonts/GenShinGothic-Light.woff') format('woff'),
        url('./fonts/GenShinGothic-Light.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'GenShinGothic';
    src: url('./fonts/GenShinGothic-Medium.eot');
    src: url('./fonts/GenShinGothic-Medium.woff2') format('woff2'),
        url('./fonts/GenShinGothic-Medium.woff') format('woff'),
        url('./fonts/GenShinGothic-Medium.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'GenShinGothicMono';
    src: url('./fonts/GenShinGothic-Monospace-Light.eot');
    src: url('./fonts/GenShinGothic-Monospace-Light.woff2') format('woff2'),
        url('./fonts/GenShinGothic-Monospace-Light.woff') format('woff'),
        url('./fonts/GenShinGothic-Monospace-Light.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'GenShinGothicMono';
    src: url('./fonts/GenShinGothic-Monospace-Light.eot');
    src: url('./fonts/GenShinGothic-Monospace-Medium.woff2') format('woff2'),
        url('./fonts/GenShinGothic-Monospace-Medium.woff') format('woff'),
        url('./fonts/GenShinGothic-Monospace-Medium.ttf') format('truetype');
    font-weight: bold;
}

body
{
    font-family: 'GenShinGothic', sans-serif;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 120%;
}

h1
{
    font-size: 200%;
    color: darkblue;
    line-height: 150%;
}

h2
{
    font-size: 150%;
    color: midnightblue;
    border-bottom: solid thin;
    border-bottom-color: deepskyblue;
    line-height: 150%;
}

h3
{
    font-size: 120%;
    color: midnightblue;
    line-height: 150%;
    border-left: solid 5px;
    border-left-color: lightskyblue;
    margin-left: 5px;
    padding-left: 5px;
}

p
{
    line-height: 100%;
}

.mono
{
    font-family: 'GenShinGothicMono', monospace;
}

.comment
{
    color: darkgray;
    font-size: 70%;
}

.break-all
{
    word-break: break-all;
}

table
{
    border-collapse: separate;
    border-spacing: 1px;
    border: solid 1px;
    border-color: darkgray;
    /*width: 100%;*/
}

table.fixed
{
    table-layout: fixed;
}

th
{
    padding: 5px 15px;
    background-color: mintcream;
    text-align: center;
    border: solid 1px;
    border-color: slategray;
}

td
{
    padding: 5px 15px;
    border: solid 1px;
    border-color: gray;
}

.noborder
{
    border: 0px !important;
    padding: 1px;
}

input[type="text"], input[type="number"], input[type="password"], textarea
{
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 2px;
    border-radius: 3px;
    border: 1px solid;
    border-color: dodgerblue;
}

input[type="text"], input[type="number"], input[type="password"]
{
    font-family: inherit;
    font-size: 100%;
}

input[type="submit"], input[type="button"]
{
    font-family: inherit;
    font-size: 100%;
    font-weight: bold;
    border-radius: 3px;
    background-color: aliceblue;
    border: 1px solid;
    border-color: dodgerblue;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 6px;
    padding-right: 6px;
    cursor: pointer;
}

input[type="submit"]:hover, input[type="button"]:hover
{
    background-color: azure;
}

input[type="submit"][disabled], input[type="button"][disabled]
{
    background-color: gainsboro;
    border-color: dimgray;
    cursor: default;
}

input[type="file"]
{
    font-family: inherit;
    font-size: 100%;
}

textarea
{
    font-family: 'GenShinGothicMono', monospace;
    font-size: 90%;
}

select {
    font-family: inherit;
    font-size: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid dodgerblue;
    border-radius: 3px;
    background-color: #fffafa;
    background: url('./arrow.png') right 50% no-repeat, white;
	background-size: 17px auto;
}
