li {
    margin-left: 32px;
}

a {
    cursor: pointer;
}

.EditorContainer {
    max-width: 991px;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.toolbar {
    padding: 16px;
    background-color: #24262d;
}

.toolbar .head {
    display: flex;
    grid-gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    font-family: roboto;
}

.toolbar .head>input {
    max-width: 100px;
    padding: 6px 10px;
    border-radius: 2px;
    border: solid 2px #ddd;
    outline: none;
}

.toolbar .head select {
    background-color: #fff;
    border: solid 2px #eee;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.toolbar .head .color {
    background-color: #fff;
    border: solid 2px #eee;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    grid-gap: 6px;
    padding: 0px 10px;
}

.toolbar .head .color span {
    font-size: 14px;
}

.toolbar .head .color input {
    padding: 0px;
    border: none;
    width: 25px;
    height: 25px;
}

.toolbar .head .color input::-moz-color-swatch {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;

}

.btn-toolbar {
    padding: 5px;
    border-radius: 2px;
}

.toolbar .btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
}

.toolbar .btn-toolbar button {
    background-color: #24262d;
    border: solid 1px #dddddd57;
    border-radius: 6px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toolbar .btn-toolbar button img {
    width: 20px;
}

.toolbar .btn-toolbar button:hover {
    background-color: #000;
}

#content {
    padding: 16px;
    outline: none;
    height: 40vh;
    font-family: roboto;
}

#show-code[data-active='true'] {
    background-color: #eee;
}