-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
106 lines (89 loc) · 1.47 KB
/
style.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
html {
overflow: hidden;
}
body {
height: 100vh;
margin: 0;
}
.pusher {
display: flex;
flex-direction: column;
}
#dimmer {
transition-property: z-index, opacity;
}
#dimmer:not(.active) {
z-index: -1;
}
#main {
display: flex;
flex-direction: column;
flex: 1;
flex-grow: 1;
}
#menu {
z-index: 1;
}
.ts.grid, .ts.grid > .row {
margin: 0;
flex: 1;
flex-grow: 1;
}
.ts.grid > .row .column:not(.row) {
display: flex;
flex-direction: column;
padding: 0;
flex: 1;
flex-grow: 1;
}
#code > .ts.tab.segment {
padding: 0;
margin: 0;
height: 100%;
}
#code .editor {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
line-height: 17px;
}
[class*="ace"] {
font: 14px/normal 'Monaco', 'Menlo', 'Consolas', 'source-code-pro', "微軟正黑體", "Microsoft YaHei", monospace !important;
}
#code, #preview {
position: relative;
overflow: hidden;
}
.iframe.wrapper {
display: flex;
flex: 1;
flex-grow: 1;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
iframe {
flex: 1;
width: 100%;
border: 0;
}
#label {
width: 100%;
background-color:slategray;
color: white;
padding: 5px 12px;
font-size: 16px;
display: block;
min-height: calc(1em + 10px);
}
.logo {
height: 35px;
width: 35px;
}
.version {
bottom: 0;
margin-bottom: 10px !important;
margin-top: 10px !important;
margin: auto;
}