forked from shakacode/react-webpack-rails-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_app-styling-post-bootstrap-loading.scss
77 lines (69 loc) · 1.51 KB
/
_app-styling-post-bootstrap-loading.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
66
67
68
69
70
71
72
73
74
75
76
77
// This file is used as part of the bootstrap-sass-loader customization
// ## Baseline
// Included from bootstrap-sass.config.js
body {
padding-top: 20px;
}
#main-entry-point {
color: pink;
}
.doc-content {
padding-top: 10px;
}
.logo {
background-image: image-url("railsonmaui.png");
background-repeat: no-repeat;
background-position: left bottom;
height: 40px;
width: 146px;
margin-right: 10px;
display: inline-block;
}
.open-sans-light {
font-family: 'OpenSans-Light'; // making use of custom fonts
}
// ## 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;
}
}