blob: eae150880146e00707496b9b35b543e7b8904baa (
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
|
.drop-target.drop-open {
outline: 2px solid;
}
.body {
position: relative;
margin-right: 300px;
}
.page {
max-width: 100%;
width: 1080px;
padding: 0 10px;
box-sizing: border-box;
margin: 0 auto;
}
.navigation {
background: blue;
color: #fff;
margin-right: 300px;
margin-bottom: 30px;
}
.navigation .item a {
padding: 30px 20px;
display: inline-block;
}
.navigation .item a {
color: inherit;
}
.navigation .drop-target.drop-open {
background: #fff;
color: blue;
outline: none;
}
.right-sidebar {
position: fixed;
height: 50%;
width: 300px;
background: #eee;
overflow: auto;
right: 0;
}
.right-sidebar .drop-target.drop-open {
background: blue;
color: #fff;
outline: none;
}
.right-sidebar .item a {
display: block;
padding: 20px;
margin-bottom: 10px;
background: rgba(0, 0, 0, .1);
}
.right-sidebar-top {
top: 0;
}
.right-sidebar-bottom {
top: 50%;
background: #ccc;
}
.scroll-container {
position: relative;
overflow: auto;
background: #eee;
padding: 20px;
margin-bottom: 20px;
margin-right: 20px;
height: 200px;
width: 200px;
}
.absolute-container {
position: absolute;
top: 20px;
right: 300px;
}
|