-
Notifications
You must be signed in to change notification settings - Fork 25
/
style.css
53 lines (47 loc) · 838 Bytes
/
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
.sidebar {
/* display: none;*/
}
@media (min-width: 768px) {
.sidebar {
position: fixed;
top: 0;
bottom: 0;
right: 0;
z-index: 1000;
display: block;
padding: 20px;
overflow-x: hidden;
overflow-y: hidden;
background-color: #f5f5f5;
border-right: 1px solid #eee;
}
}
.main {
padding: 20px;
padding-bottom: 500px;
}
@media (min-width: 768px) {
.main {
padding-right: 40px;
padding-left: 40px;
}
}
.main .page-header {
margin-top: 0;
}
.breakpoint-current {
left: 0;
margin-top: -10px;
position: fixed;
/* top: 33.3333%; */
width: 3px;
height: 3px;
background: red;;
}
.viewing {
background: #eee;
}
section {
padding: 5px 10px 10px 10px;
border-radius: 10px;
}