forked from SthephanShinkufag/bytebeat-composer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
52 lines (43 loc) · 880 Bytes
/
stylesheet.css
File metadata and controls
52 lines (43 loc) · 880 Bytes
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
/* Whole page */
html {color-scheme: dark; font-family: monospace; font-size: 16px;}
.{-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
red {color: red;}
/* Adaptive screen */
@media screen and (max-width: 512px) {
#editor-container {
height: calc(100vw/2);
}
}
@media screen and (max-width: 768px) {
#container-fixed, #container-scroll {
max-width: 516px;
}
#control-counter {
width: 66px;
}
}
@media screen and (min-width: 1440px) {
#container-fixed {
flex-shrink: 0;
height: 100%;
}
#container-scroll {
display: block !important;
max-width: initial;
height: 100%;
margin-top: 0;
margin-left: 6px;
padding-right: 6px;
}
#content {
flex-flow: row;
align-items: start;
}
#control-expand {
display: none;
}
#editor-container {
flex: auto;
resize: none;
}
}