-
Notifications
You must be signed in to change notification settings - Fork 2
/
_main.scss
66 lines (58 loc) · 1.29 KB
/
_main.scss
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
// This file is used as part of the bootstrap-sass-loader customization
// Compare this to main.scss (no underscore) which is loaded by itself
// ## Baseline
// Included from bootstrap.config.less.
body {
padding-top: 20px;
}
#main-entry-point {
color: pink;
}
.doc-content {
padding-top: 10px;
}
// ## Nav
// When nav is affixed, set it's position and size.
#nav.affix {
position: fixed;
top: 3px;
width: 80%;
z-index: 10;
}
// ## Code
// Set up table to render two column view
// of documentation on left and code, syntax
// highlighted on the right.
table.file-table {
width: 100%;
border-radius: $border-radius-base;
border: 0px;
border-spacing: 0px;
display: table;
table-layout: fixed;
td.file-docs {
background-color: #fff;
width: 30%;
max-width: 30%;
text-overflow: ellipsis;
padding: 5px;
vertical-align: top;
}
td.file-code {
border-left: 1px groove darken(#f5f5f5, 20%);
background-color: #f5f5f5;
color: #333;
width: 70%;
max-width: 70%;
text-overflow: ellipsis;
padding-left: 5px;
vertical-align: bottom;
}
// Remove extra separation between the code
// so it looks more like one continuous block.
pre.prettyprint {
padding: 0 !important;
border: 0 !important;
margin: 0 0 !important;
}
}