blob: ee5423517988a361e20d6972291c1431df7c498d (
plain) (
blame)
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
|
// Font
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Lora:400,700|Roboto+Mono:300,400');
// Bootstrap
@import 'bootstrap/functions';
@import 'bootstrap-variables';
@import 'bootstrap/variables';
@import 'bootstrap/mixins';
@import 'bootstrap/reboot';
@import 'bootstrap/utilities';
@import 'bootstrap/grid';
@import 'bootstrap/tables';
// Libraries
@import 'libraries/hamburgers/hamburgers';
@import 'libraries/pygments/github';
// Components
@import 'components/reset';
@import 'components/type';
@import 'components/page';
@import 'components/header';
@import 'components/footer';
@import 'components/sub-footer';
@import 'components/logo';
@import 'components/main-menu';
@import 'components/main-menu-mobile';
@import 'components/docs-menu';
@import 'components/hamburger';
@import 'components/buttons';
@import 'components/title';
@import 'components/content';
@import 'components/strip';
@import 'components/whitebox';
@import 'components/overview';
@import 'components/anchor';
// Pages
@import 'pages/home';
// Global
body {
font-family: $font-family-base;
font-size: 1rem;
font-weight: 400;
line-height: 1.4;
color: $black;
}
.container {
padding-left: $grid-gutter-width;
padding-right: $grid-gutter-width;
}
// Display breakpoints for DEV
// body:after {
// color: #000000;
// font-size: 12px;
// padding: 5px;
// font-weight: bold;
// right: 10px;
// position: fixed;
// text-align: center;
// text-transform: uppercase;
// bottom: 10px;
// width: 200px;
// z-index: 9999;
// border: solid 1px #000000;
// @each $name, $value in $grid-breakpoints {
// @include media-breakpoint-up($name) {
// content: "#{$name} - min-width: #{$value}";
// }
// }
// }
|