-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
54 lines (43 loc) · 1.01 KB
/
style.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
/* This change the style of the main container that wraps the whole R Markdown document. It allows the parallax image to be full width */
.main-container {
max-width: 100% !important;
margin-left: auto;
margin-right: auto;
}
/* Then we place our content with this style because we don't want it to be full width */
.mycontent{
max-width: 900px !important;
margin-left: auto;
margin-right: auto;
font-family: 'Montserrat';
font-size: 130%;
line-height: 1.7;
padding-right: 15px;
padding-left: 15px;
}
/* Just for fun, a bit of customization for title and text.. */
.mytitle{
text-transform: uppercase;
font-family: 'Montserrat';
font-size: 80%;
font-weight: 300;
letter-spacing: 4px;
}
.mysubtitle{
color:grey;
font-family: 'Montserrat';
}
h1, .h1, h2, .h2, h3, .h3 {
margin-top: 100px;
}
h1 {
padding-top: 65px !important;
margin-top: 30px !important;
}
pre {
border: 0px solid #cccccc;
border-radius: 0px;
}
a {
color: #69b3a2;
}