/*
 * This file is part of react-svg-buttons.
 *
 * (c) Raphaël Benitte
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
@import "variables.css";
@import "helpers.css";
@import "structure.css";
@import "select.css";
@import "switch.css";
@import "playground.css";
@import "header.css";


* {
    box-sizing: border-box;
}

body {
    font-family: var(--main-font-family);
    font-size: 16px;

    margin:  0;
    padding: 0;

    background: var(--main-bg-color);
    color:      var(--main-txt-color);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: inherit;
    text-decoration: none;
}

.footer {
    background: var(--alt-bg-color);
    color:      var(--alt-txt-color);
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
    margin-top: 30px;
}

.sub-header {
    background: var(--sub-header-bg-color);
    color:      var(--sub-header-txt-color);
    padding: 15px 0;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.75);
    margin-bottom: 30px;
}
.sub-header .strata_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sub-header_install {
    font-family: var(--code-font-family);
}


.form_row {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-family: var(--title-font-family);
    font-weight: 400;
    color: var(--alt-txt-color);
    text-align: left;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="number"] {
    font-family: var(--main-font-family);
    padding: 7px 12px;
    font-size: 16px;
    width: 50%;
    float: left;
    border: none;
    background: var(--alt-bg-color);
    color:      var(--alt-txt-color);
    border-radius: 2px;
}

pre,
code {
    font-family: var(--code-font-family);
}
pre {
    margin: 0;
    text-align: left;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 24px;
    white-space: pre;
    background: #1a0a14;
    color: #dd6e78;
    border-radius: 2px;
}

.preview_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.preview_grid > * {
    margin-bottom: 15px;
    width: 50%;
}

.examples {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.examples_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.examples_item__code {
    padding: 9px 12px;
    font-size: 14px;
    line-height: 1em;
    flex: 1;
    margin-left: 15px;
}

@import "mq.css";