/*
    Stylesheet for Bitin' by Nobiduke(Landon Jones)

*/

/*
    Externals
*/

body{
    background-color: #222222;
}

nav{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-family: consolas;
    color: #999999;
}

/*
    SCREEN HOLDERS
*/
.main-screen{
    position: absolute;
    top:0px;
    left:0px;
    top: 10px;
    left: 0px;
    width: 100%;
    height: 95%;
    margin: 0px;
    display: flex;
    justify-content: stretch;
    align-items: center;
    overflow: hidden;
}
.left-holder{
    margin: 0px;
    
    background-color:brown;
    width: clamp(600px, 60vw, 80vw);
}
.right-holder{
    background-color: black;
    width: clamp(300px, 40vw, 40vw);
    height: 100%;
}

/*
    CONSOLE CLASSES
*/
.console-holder{
    border: 1px solid slategray;
    background-color: #334455;
    height: 60vh;
    width: 100%;
    display: grid;
    justify-items: center;
    align-content: center;
}
.console-if-holder{
    display: grid;
    justify-items: center;
}

/*
    SHOP CLASSES
*/
.shop-holder{
    height: 40vh;
    border: 1px solid #AAAAAA;
    background-color: #667788;
    width: 100%;
}
.shop-bit-label{
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    margin-top: 10px;
    margin-left: 10px;
    height: 20px;
    width: clamp(60px, 120px, 160px);
    background-color: #8888AA;
    border-radius: 3px;
}
.shop-bit-amount{
    font-family: consolas;
}
.shop-bit-icon{
    height: 10px;
    width: 10px;
    margin-right: auto;
    margin-left: 5px;
}
.shop-merch{
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-items: center;
    align-items: center;
}
.shop-price{
    background-color: #AAAACC;
    border-radius: 10px;
    font-family: consolas;
    font-size: small;
    user-select: none;
}

/*
    BIT GRID CLASSES
*/
.bit-holder{
    border: 1px solid slategray;
    background-color: #222243;
    height: 40vh;
    width: 100%;
    z-index: 0;
}
.bit-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns:repeat(8, 1fr);
    justify-items: center;
    align-items: center;
}

/*
    BLOCK CLASSES
*/
.block-holder{
    border: 1px solid slategray;
    background-color: #223354;
    height: 60vh;
    display: grid;
    justify-items: center;
    justify-content: center;
    align-content: center;
    grid-template-columns: 1fr 1fr 1fr;

}
.if-block{
    margin: 5px;
    padding: 5px;
    background-color: #AAAACC;
    font-size: smaller;
    user-select: none;
    font-family: consolas;
    
}
.while-block{
    user-select: none;
    font-size: smaller;
    margin: 5px;
    padding: 5px;
    background-color: #AAAACC;
    font-family: consolas;

}
.base-code{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    font-family: consolas;
    margin: 5px;
    border-radius: 4px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #222243;
    color: #00b800;
    width: 50px;
}
.base-timer{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    font-family: consolas;
    margin: 5px;
    border-radius: 4px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #222243;
    width: 50px;
    color: #fff75e;
}
.base-condition{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    font-family: consolas;
    margin: 5px;
    border-radius: 4px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #222243;
    width: 90px;
    color: #35aeff;
}

/*
    FONTS
*/
@font-face {
    font-family: consolas;
    src: url(./Consolas.ttf);
}