styles.css (view raw)
1/* General app style */
2
3#editor,
4#footer,
5#copy {
6 position: absolute;
7 left: 0;
8 right: 0;
9 bottom: 0;
10}
11
12#editor {
13 top: 0;
14 bottom: 36px;
15}
16
17#footer,
18#copy {
19 height: 36px;
20 padding: 4px 20px 0 50px;
21 background-color: #3b3b47;
22}
23
24.d-inline-block {
25 display: inline-block;
26}
27
28.select-wrapper {
29 width: 300px;
30 font-size: 14px;
31 font-family: sans-serif;
32}
33.select-wrapper .ss-main .ss-single-selected {
34 height: 28px;
35}
36button {
37 cursor: pointer;
38}