blob: 568f0edd6708c90c44bb5672a21c2781881d171c (
plain)
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
|
.splitpanel-vertical {
display: flex;
flex-direction: row;
overflow: auto;
}
.splitpanel-vertical > *:first-child {
max-width: calc(100% - 9px);
}
.splitpanel-vertical > * {
flex: 0 0 auto;
overflow: auto;
}
.splitpanel-vertical > *:last-child {
flex: 1 1 auto;
overflow: auto;
}
.splitpanel-horizontal {
display: flex;
flex-direction: column;
overflow: auto;
}
.splitpanel-horizontal > *:first-child {
max-height: calc(100% - 9px);
}
.splitpanel-horizontal > * {
flex: 0 0 auto;
overflow: auto;
}
.splitpanel-horizontal > *:last-child {
flex: 1 1 auto;
overflow: auto;
}
.splitter-vertical {
flex: 0 0 auto;
width: 9px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAhCAQAAABOpSL+AAAAIklEQVR4AWMwbb/PdR+JZDD9f1/oPhI5sgVGBSruc9xHIgGdSQqqQJGkRgAAAABJRU5ErkJggg==') center center no-repeat #cecece;
cursor: col-resize;
}
.splitter-horizontal {
flex: 0 0 auto;
height: 9px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAICAQAAADdTl4aAAAAIElEQVQoz2MwrTD9TxFsZ7jPcV+IIsjFQAUw6hFqegQA+xzRHT2p7pEAAAAASUVORK5CYII=') center center no-repeat #cecece;
cursor: row-resize;
}
/* Dead Simple Grid (c) 2015 Vladimir Agafonkin */
.dsgrow .dsgrow { margin: 0 -1.5em; }
.dsgcol { padding: 0 1.5em; }
.dsgcolf { padding: 0 1.5em; }
.dsgrow:after {
content: "";
clear: both;
display: table;
}
@media only screen {
.dsgcol {
float: left;
width: 100%;
box-sizing: border-box;
}
.dsgcol::before {
content: "\200B";
}
.dsgcolf {
float: left;
box-sizing: border-box;
}
.dsgcolf::before {
content: "\200B";
}
}
|