@import './ui.css'; 
@import './ui-input-range.css'; 
@import './ui-input-color.css'; 
@import './ui-input-button.css';
@import './ui-accordion.css'; 

:root {
    --text-color: #333333;
    --inputbg-color: #ffffff;
    --accent-color: #e1e6e7;
    --accent-color-dark: #869da1;
    --thumb-height: 10px;
    --thumb-width: 10px;
    --thumb-border-radius: 50%;
    --round-input-radius: 40px;
    --range-button-radius: 30px;
    --font-family-ui: 'Quicksand', sans-serif;
    --font-family-text: "游ゴシッグ", "ヒラギノ角ゴProN", "メイリオ", "MSPゴシック", sans-serif;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

* :focus {border: none;  outline: 0;}

html,
body {
    font-family: var(--font-family-text);
    margin: 0;
    overflow: hidden;
    height: 100%;
}

a {
	color: var(--accent-color-dark);
	text-decoration: none;
}

/* Scale canvas with resize attribute to full size */
canvas[resize] {
    width: 100%;
    height: 100%;
}

.panel-left {
    width: 220px;
    /* height: 100%; */
    position : fixed;
    top: 20px;
    left: 20px;
    background-color: none;
}

@media screen and (max-width: 1080px) {
    .panel-left {
        width: 190px;
        /* height: 100%; */
        position : fixed;
        top: 10px;
        left: 10px;
        background-color: none;
    }
}

@media screen and (max-width: 480px) {
    .panel-left {
        width: 150px;
        /* height: 100%; */
        position : fixed;
        top: 10px;
        left: 10px;
        background-color: none;
    }
}

.description {
    font-family: var(--font-family-ui);
    letter-spacing: 0.2em;
    font-size: 12px;
    line-height: 180%;
    margin: 0 0 0 0;
    padding: 10px 10px 10px 10px;
}


.keyboard-shortcut {
    font-family: var(--font-family-ui);
    border: 0px solid grey;
    border-radius: 5px;
    padding: 0;
    margin: 0 5px 0 0;
}