-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy path_doc-layout.scss
More file actions
63 lines (55 loc) · 1 KB
/
_doc-layout.scss
File metadata and controls
63 lines (55 loc) · 1 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
html, body{
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;
padding-bottom: 10em;
}
.content-inner {
width: auto;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding-top: 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;
}
}