-
Notifications
You must be signed in to change notification settings - Fork 0
/
print.css
87 lines (87 loc) · 1.4 KB
/
print.css
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
78
79
80
81
82
83
84
85
86
87
@media print {
body {
font-family: 'Montserrat', sans-serif;
font-size: 0.8rem;
-webkit-print-color-adjust: exact;
}
h1 {
font-size: 1.25rem;
}
h2 {
font-size: 1.2rem;
}
h3 {
font-size: 1.15rem;
}
h4 {
font-size: 1rem;
}
h5 {
font-size: 0.95rem;
}
h6 {
font-size: 0.9rem;
}
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
float: left;
}
.col-md-12 {
width: 100%;
}
.col-md-11 {
width: 91.66666667%;
}
.col-md-10 {
width: 83.33333333%;
}
.col-md-9 {
width: 75%;
}
.col-md-8 {
width: 66.66666667%;
}
.col-md-7 {
width: 58.33333333%;
}
.col-md-6 {
width: 50%;
}
.col-md-5 {
width: 41.66666667%;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-3 {
width: 25%;
}
.col-md-2 {
width: 16.66666667%;
}
.col-md-1 {
width: 8.33333333%;
}
.header {
background-color: #2f393b;
color: #fff;
}
.header a {
text-decoration: none;
color: #fff;
cursor: pointer;
}
.section-header {
border-bottom: 1px solid #eee;
}
}