@import url("font.css");
*{
    font-family: "Google Sans Code", monospace;
}
body{
    background-color: #111111;
}
#topbar{
    position: fixed;
    left: 0px;
    top: 0px;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    align-items: center;
    background-color: #222222;
    color: white;
}
#topbar *, #wiki_top *{
    margin: 0px;
    margin-left: 10px;
}
#topbar h1{
    font-size: 20px;
}
.right{
    display: flex;
    align-items: center;
    margin-left: auto !important;
    margin-right: 10px !important;
    box-shadow: none !important;
}
#editor{
    position: fixed;
    left: 5px;
    top: 55px;
    width: calc(60% - 10px);
    height: calc(100% - 65px);
    background-color: black;
    color: lime;
    resize: none;
    border: none;
    outline: none;
}
#toolbar{
    position: fixed;
    width: calc(40% - 10px);
    left: calc(60% + 5px);
    top: 55px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-shadow: none !important;
}
#toolbar button, .right button{
    cursor: pointer;
    background-color: #222222;
    color: white;
    margin-right: 5px;
    padding: 5px;
    min-width: 60px;
    border: none;
    border-radius: 5px;
    transition: filter 0.25s;
}
#toolbar button:hover, .right button:hover{
    filter: brightness(120%);
}
#toolbar button:active, .right button:active{
    filter: brightness(80%);
}
.right button{
    background-color: #333333;
}
#wiki_popup{
    position: fixed;
    left: 30px;
    top: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);
    background-color: #111111;
    border-radius: 7px;
    z-index: 9999;
    transition: opacity 0.25s;
}
#wiki_top{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    padding-right: 0px;
    padding-left: 0px;
    height: 40px;
    color: white;
}
#wiki_app{
    width: 100%;
    height: calc(100% - 50px);
    border: none;
}
#compiler{
    position: fixed;
    width: calc(40% - 10px);
    height: calc(100% - 90px);
    left: calc(60% + 5px);
    top: 84px;
    background-color: black;
    border: none;
}
div, textarea, iframe{
    box-shadow: 0px 5px 15px #080808;
}
