-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.less
46 lines (39 loc) · 1.34 KB
/
styles.less
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
/*! Style is inline so saving the page is easier. Not the most efficient way to include style ¯\_(ツ)_/¯ */
/*! Bootstrap v3.3.5 (http://getbootstrap.com) | Copyright 2011-2015 Twitter, Inc. | Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */
// Core variables and mixins
@import "bower_components/bootstrap/less/variables.less";
@font-size-base: 13px;
@font-size-h1: floor((@font-size-base * 2.4));
@font-size-h2: floor((@font-size-base * 2));
@font-size-h3: ceil((@font-size-base * 1.5));
@font-size-h4: ceil((@font-size-base * 1.05));
@font-size-h5: @font-size-base;
@font-size-h6: ceil((@font-size-base * 0.85));
@import "bower_components/bootstrap/less/mixins.less";
// Reset and dependencies
@import "bower_components/bootstrap/less/normalize.less";
@import "bower_components/bootstrap/less/print.less";
@import "bower_components/bootstrap/less/type.less";
@import "bower_components/bootstrap/less/scaffolding.less";
@import "bower_components/bootstrap/less/grid.less";
body {
padding: 5px;
}
@media print {
body {
padding: 0.5cm;
}
h1, h2, h3 {
margin-top: 6px;
margin-bottom: 2px;
}
h1 {
font-size: floor((@font-size-base * 2));
}
h2 {
font-size: floor((@font-size-base * 1.6));
}
h3 {
font-size: floor((@font-size-base * 1.2));
}
}