<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*, *:before, *:after {
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html,body{
    height: 100%;
    font-family: monospace, arial, helvatica, sans-serif;
    font-size: 13px;
}

a:link,
a:visited{
    color: white;
}

body{
    background-color: #000000;
    color: grey;
}

#dot{
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: white;
    position: absolute;
    border: 1px solid #000000;
}

#dot:hover{
    background-color: green;
    cursor: pointer;
}

.color{
    width: 50px;
    height: 50px;
    border: 2px solid black;
    margin: 4px;
}

.color.active{
    border: 2px solid white;
}

#stage{
    width: 690px;
    margin: auto;
}

#info{
    width: 500px;
    padding: 10px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    margin-top: 4px;
}

#log{
   padding: 5px 0 10px 0;
}

#controls{
    float: right;
    width: 180px;
    padding: 10px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    height: 502px;
}</pre></body></html>