-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy path_doc-layout.scss
More file actions
86 lines (75 loc) · 1.36 KB
/
_doc-layout.scss
File metadata and controls
86 lines (75 loc) · 1.36 KB
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
html,
body {
height:100%;
}
.off-canvas-wrap,
.inner-wrap {
min-height: 100%;
}
body {
@include helvetica;
overflow-x: hidden;
.row {
max-width: 75rem;
}
.row.fullwidth {
max-width: 100%;
padding-left: 1.25em;
padding-right: 1.25em;
}
}
.content-wrap {
position: relative;
padding-left: 320px;
min-height: 100%;
margin-bottom: -335px;
@media #{$small-only} {
padding-left: 5%;
padding-right: 5%;
}
@media #{$medium-only} {
padding-left: 5%;
padding-right: 5%;
}
&:after {
content: "";
display: block;
height: 390px;
}
}
.content-inner {
width: auto;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding-top: 128px;
padding-bottom: 128px;
}
.sidebar {
width: 290px;
position: fixed;
top: 0;
left: 0;
background: white;
z-index: 1010;
height: 100%;
overflow-y: scroll;
border-bottom: 2px solid $light1;
}
.alert-box.banner {
background: $pink;
text-align: center;
color: white;
position: relative;
z-index: 10;
display: block;
margin-left: 290px;
padding: 88px 0 8px;
margin-bottom: -75px;
font-size: 0.925rem;
letter-spacing: 0.025em;
a {
color: white;
border-bottom: 1px dotted white;
}
}