forked from kirenz/markdown-report
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (87 loc) · 1.94 KB
/
style.css
File metadata and controls
104 lines (87 loc) · 1.94 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* * Customizing css * */
@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700';
@import 'https://fonts.googleapis.com/css?family=Source+Code+Pro';
/* define colors */
:root {
--dark-blue: #002b36;
--light-blue: #A7D5E8;
--green: #8fada7;
--gray: #A7A7A7;
--pink: #E9AFA3;
--yellow: #e9d968;
--beige: #fdf6e3;
--green-faint: #8fada750;
--light-blue-faint: #A7D5E850;
--pink-faint: #E9AFA350;
}
/* CSS styles */
body {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 300;
background-color: #ffffff;
color: #222;
counter-reset: li;
}
h1.title {
font-weight: 700;
font-family: 'Source Sans Pro', sans-serif;
color: var(--dark-blue);
}
h1 {
font-style: normal;
font-family: 'Source Sans Pro', sans-serif;
font-size: 200%;
color: var(light-blue);
}
h2 {
font-style: normal;
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
font-size: 175%;
color: var(light-blue);
}
h3.subtitle {
font-style: normal;
color: var(--green);
font-size: 120%;
}
h4 {
font-style: normal;
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
margin-top: 1.5rem;
margin-bottom: 0;
font-size: 120%;
line-height: 1;
}
/* Table of Content (TOC) */
.list-group-item.active {
color: white;
font-weight: bold;
background-color: #CE2C40;
border: none;
}
.list-group-item:hover,
.list-group-item.active:hover {
color: white;
background-color: #CE2C40;
}
.list-group-item {
background-color: white;
}
/* Logo in TOC */
#TOC::before {
content: "";
display: block;
height: 50px;
margin: 2em 10px 20px 10px;
background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/HdM_Logo.svg/100px-HdM_Logo.svg.png");
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
}
/* Code formatting */
code {
font-family: 'Source Code Pro', Consolas, "Liberation Mono", Menlo, Courier, monospace;
line-height: 1.6;
}