flocking
Version:
Creative audio synthesis for the Web
104 lines (88 loc) • 1.55 kB
CSS
*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body, .everything {
height: 100%;
font-family: sans-serif;
}
select {
font-family: "Lucida Grande";
font-size: 0.8em;
}
label {
font-weight: bold;
font-size: 0.8em;
}
.everything {
width: 100%;
height: 100%;
background-color: #272822;
}
.toolbar {
background-color: #ddd;
padding: 0.5em;
}
/* Clearfix. Get this from somewhere else or factor into a utility. */
.toolbar:after {
content: " ";
display: table;
clear: both;
}
.toolbar .left {
float: left;
padding-top: 0.4em;
}
.toolbar .right {
float: right;
}
.synthSelector {
float: left;
margin-top: 0.45em;
}
#gfx {
float: right;
padding-right: 1em;
padding-top: 0.25em;
background-color: #ddd;
border-radius: 1em;
}
.mainPanel {
height: 100%;
width: 100%;
padding-top: 3.1em;
background-color: #272822;
}
#source-view {
font-size: 12pt;
float: left;
border-right: 1px dotted #aaa;
}
.CodeMirror {
height: 95%;
border-bottom: 1px solid #aaa;
}
.CodeMirror-scroll {
overflow: auto;
}
.masthead {
background-color: #aaa;
padding: 0.5em;
position: fixed;
top: 0;
width: 100%;
z-index: 100;
}
.console {
color: #f77;
background-color: #272822;
padding: 0.5%;
width: 100%;
position: fixed;
bottom: 0px;
font-family: "Lucida Console", monospace;
font-size: 0.75em;
}