@import 'reset.css';
@import 'https://fonts.googleapis.com/css?family=Open+Sans';

body {
    margin: 50px auto;
    padding: 0 10px;
    width: 100%;
    max-width: 800px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}

h1 {
    text-align: center;
    font-size: 35pt;
    margin: 35px 0;
}

a {
    color: #07c;
    text-decoration: none;
}

a:hover {
    border-bottom: 1px solid #07c;
}

p {
    line-height: 1.75em;
    margin-bottom: 1.5em;
}

.button, input, textarea {
    margin: 0;
    font-size: 1em;
    line-height: 1;
}

input[type=text] {
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
}

textarea {
    width: 100%;
    height: 300px;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #aaa;
    font: inherit;
}

.hidden {
    display: none;
}

.section {
    margin: 30px 0;
}

.subsection {
    margin-bottom: 15px;
}

.rule {
    border: 0;
    width: 60px;
    margin: 40px auto 30px;
    height: 2px;
    color: #aaa;
    background: #aaa;
}

.button {
    padding: 8px;
    display: inline-block;
    border: 1px solid #666;
    color: #000;
    background: #eee;
    border-radius: 0;
}

.button:hover {
    cursor: pointer;
    background: #fff;
    color: #07c;
    border: 1px solid #07c;
}

.button:active {
    background: #aaa;
    color: #000;
    border-color: #000;
}

.button.disabled {
    cursor: default;
    background: #eee;
    color: #888;
    border-color: #888;
}

.short {
    width: 120px;
}

.long {
    width: 250px;
}

.mono {
    font-family: Monaco, Menlo, 'Ubuntu Mono', Consolas, source-code-pro, monospace;
    font-size: 12px;
}

.attention {
    display: inline-block;
    margin-left: 10px;
    font-style: italic;
    vertical-align: middle;
    height: 30px;
}

.readonly {
    background: #fafafa;
}

.editor {
    width: 100%;
    height: 500px;
    border: 1px solid #aaa;
}

.controls {
    text-align: center;
    line-height: 3;
}

.controls li {
    display: inline-block;
    margin-right: 10px;
}
