blob: f86bfba15872f74af40cf2b2ede5fa1e2f7c2f13 (
plain) (
blame)
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
|
.draggable {
position: absolute;
top: 10px;
left: 10px;
}
.content {
padding: 10px;
display: flex;
flex-direction: row;
}
.sidebar {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.sidebar-content {
display: flex;
flex-direction: column;
padding: 0 20px;
border: 1px solid;
}
.shifter-body {
margin: 1em;
width: 600px;
height: 300px;
}
.shifter-button {
font-weight: bold;
font-style: italic;
border: 1px solid;
}
.shifter-window-sidebar {
display: flex;
flex-direction: row;
}
.shifter-window-buttons {
display: flex;
flex-direction: column;
}
|