﻿
@font-face {
    font-family: "Abraham";
    src: url("Abraham.woff");
}

body {
    font-family: Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

#braille-input {
    font-size: 100px;
    font-family: "Abraham";
}

#mathquill {
    font-size: 130%;
}

#braille-input, #mathquill {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px;
    width: 600px;
}

    #mathquill.mq-focused, #braille-input:focus {
        box-shadow: none;
        outline: none;
        border: 2px solid #2F72DC;
        padding: 5px;
    }

.description {
    margin: 10px 0 2px;
    color: #777;
    font-size: 120%;
    width: 600px;
    clear: both;
}

.buttons {
    font-size: 14.4px;
}

.toggle-button {
    padding: 6px 8px;
    border: 1px solid #ccc;
    color: #444;
    position: relative;
    top: -3px;
    cursor: pointer;
    width: 70px;
    text-align: center;
    float: left;
}

    .toggle-button:last-of-type {
        border-radius: 0px 6px 6px 0px;
    }

    .toggle-button:first-of-type {
        border-radius: 6px 0px 0px 6px;
    }

    .toggle-button:hover {
        border-width: 2px;
        padding: 5px 7px;
    }

    .toggle-button:active {
        background: #f4f4f4;
    }

    .toggle-button.selected {
        background: #2F72DC;
        color: #fff;
        border-color: transparent;
    }

.controls {
    width: 300px;
    margin: 12px 0;
}

.six-key-container {
    float: right;
    padding: 2px 0;
    font-size: 16px;
}

    .six-key-container input {
        display: inline-block;
        margin-left: 10px;
        font-size: 16px;
    }


