-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstyle.css
102 lines (100 loc) · 2.47 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
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
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Alegreya+Sans+SC:700|Work+Sans);
@import url('https://fonts.googleapis.com/css?family=Crimson+Text:600,600i');
body { font-family: 'Work Sans', sans-serif; }
h1, h2, h3 {
margin-top:0px;
margin-bottom: 5px;
font-family: 'Alegreya Sans SC', sans-serif;
font-weight: normal;
}
p {
margin-top: 0px;
margin-bottom: 5px;
}
.remark-notes {
font-size: 125%;
}
.remark-slide-content {
font-size: 35px;
background: #f3f3f3;
}
.remark-slide-content h1 {
font-size: 110px;
}
.remark-slide-content h2 {
font-size: 65px;
}
.remark-slide-content h3 {
font-size: 45px;
}
.remark-code, .remark-inline-code {
font-family: 'Ubuntu Mono';
text-align: left;
display: inline-block;
font-size: 26px;
background-color: white;
padding: 10px;
}
.remark-inline-code {
font-size: 32px;
}
.remark-code-line {
min-height: 0px;
}
pre {
padding: 5px;
margin: 5px;
}
.padded-top {
padding-top: 80px;
}
.padded-top2 {
padding-top: 160px;
}
blockquote {
font-family: "Crimson Text", serif;
font-size: 60px;
font-style: italic;
}
a, a.visited {
color: black;
text-decoration: none;
}
.demo {
color: white;
background: black;
}
.section-title {
color: white;
background: midnightblue;
}
.lesson > h1, .solution > h1 {
font-size: 60px;
float:left;
width:100%;
padding-bottom: 0px;
margin-bottom: 20px;
}
.lesson > h1 {
color: darkred;
border-bottom:1px solid darkred;
}
.solution > h1 {
color: darkgreen;
border-bottom:1px solid darkgreen;
}
.lesson > h2, .solution > h2 {
margin-top: 50px;
}
.left-column {
width: 50%;
float: left;
}
.right-column {
width: 50%;
float: right;
}
.black-text {
color: black;
}