blob: a37b6bf517532ec0e155f4ebd9ef3ba95287eac6 (
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
|
.draggable {
position: absolute;
top: 50px;
left: 50px;
width: fit-content;
}
.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;
}
.shifter-button {
font-weight: bold;
font-style: italic;
border: 1px solid;
}
|