*{
    margin: 0;
    padding: 0;
}

#topBar{
    display: inline-flex;
    background-color: #3f51b5;
    height: 80px;
    width: 100%;
    align-items: center;
}

#logo{
    position: relative;
    left: 50px;
    color: white;
}

#set{
    position: relative;
    left: 170px;
    display: inline-flex;
}

.toggleB{
    position: relative;
    background-color: azure;
    border: 2px solid black;
    display: block;
    height: 50px;
}

#htmlButton {
    width: 100px;
    font-size: 17px;
    background-color: #ffeb3b;
}
#cssButton{
    width: 100px;
    font-size: 17px;
}
#jsButton{
    width: 100px;
    font-size: 17px;
}
#cdnButton{
    width: 100px;
    font-size: 17px;
}

.cdnList {
    border: solid;
    width: 100%;
    text-align:center;
    border-collapse: collapse;
}

.cell {
    text-align:center;
    border: solid;
    padding: 20px;
}

.code{
    display: block;
    position: relative;
    height: 85%;
    width: 50%;
    font-size: 15px;
    color: black;
    top: 0;
    left: 5px;
    resize: none;
    border: none;
}

.code:focus{
    outline:0;
}

#editors{
    border: solid;
}

#editorHTML{
    display: block;
    border-right: 1px solid grey;
    width: 100%;
    height: 500px;
    /*background: red;*/
}

#editorCSS{
    display: none;
    border-right: 1px solid grey;
    width: 100%;
    height: 500px;
    /*background: #DAF7A6;*/
}

#editorJS{
    display: none;
    border-right: 1px solid grey;
    width: 100%;
    height: 500px;
    /*background: blue;*/
}

#editorCDN{
    display: none;
    border-right: 1px solid grey;
    width: 100%;
    /*height: 500px;*/
    /*background: yellow;*/
}

#output{
    display: block;
    height: 500px;
    width: 100%;
    border: solid;
}

#addLib{
    left: 14vw;
    position: relative;
}
#link{
    height: 30px;
    width: 16vw;
    border-radius: 2vw;
    border: 1px solid black;
    font-size: 15px;
    padding-left: 10px;
}
#link:focus{
    outline: none;
}
#append{
    height: 30px;
    width: 4vw;
    background-color: azure;
    border: 1px solid black;
    cursor: pointer;
}

#append:hover{
    background-color: bisque;
}