-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
76 lines (64 loc) · 1.08 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* {
outline: 1px solid red;
opacity: 1 !important;
visibility: visible !important;
}
*/
/*
The Csound PNaCl attaches to the #engine node.
Make it invisible, but note "display:none" doesn't
work because Chrome then removes it from the DOM
altogether.
*/
#engine, #csound_module {
position: absolute;
width: 0;
height: 0;
}
html, body {
height: -webkit-calc(100% - 10px)
}
#title {
text-align: center;
}
button {
margin: 5px;
}
#controls {
width: 100%;
height: 50px;
}
#leftControls {
display: inline-block;
float: left;
margin: 5px;
}
#rightControls {
display: inline-block;
margin: 2px;
float: right;
margin: 5px;
}
#filename {
width: 100%;
font-size: 16pt;
text-align: center;
}
#editor, #csound_output {
width: -webkit-calc(100% - 40px);
height: -webkit-calc(100% - 40px);
border: 1px solid black;
}
#csound_output {
color: #ccc;
background-color: #000;
}
li[role=tab]:focus, .ui-tabs-anchor:focus {
outline: none;
}
#tabs li span.ui-icon-closethick {
float: left;
margin: 0.4em 0.2em 0 0;
cursor: pointer;
}