-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
62 lines (50 loc) · 907 Bytes
/
style.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
---
---
//
// IMPORTS
//
@import "reset";
@import "variables";
header {
background-image: url('{{ site.baseurl }}/images/header-bg.jpg');
min-height: 200px;
background-repeat: no-repeat;
background-size: cover;
background-position-x: center;
background-position-y: center;
}
footer {
background-color: $lightGray;
padding: 10px;
}
#main {
min-height: 400px;
}
.logo {
padding: 0;
margin: 0;
}
img {
max-width: 400px;
max-height: 200px;
float: left;
margin: 20px;
}
ul {
list-style-type: disc;
}
h2 {
padding-top: 40px;
}
.card-img-top {
margin: 0px;
max-width: 100%;
}
.carousel-inner img {
max-width: none;
max-height: none;
}
// Settled on moving the import of syntax highlighting to the bottom of the CSS
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
@import "highlights";
@import "svg-icons";