-
Notifications
You must be signed in to change notification settings - Fork 1
/
fc2.css
138 lines (118 loc) · 2.54 KB
/
fc2.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* Various left and right split columns*/
.pull-left-70 { float: left; width: 66.5%; }
.pull-right-30 { float: right; width: 28.5%; }
.pull-right-30 ~ * { clear: both; }
.pull-left-60 { float: left; width: 57%; }
.pull-right-40 { float: right; width: 38%; }
.pull-right-40 ~ * { clear: both; }
.pull-left-50 { float: left; width: 47.5%; }
.pull-right-50 { float: right; width: 47.5%; }
.pull-right-50 ~ * { clear: both; }
.pull-left-40 { float: left; width: 38%; }
.pull-right-60 { float: right; width: 57%; }
.pull-right-60 ~ * { clear: both; }
.pull-left-30 { float: left; width: 28.5%; }
.pull-right-70 { float: right; width: 66.5%; }
.pull-right-70 ~ * { clear: both; }
/* headers and fonts*/
h1, h2, h3 {
margin-top: 0;
padding-top: 0.5em;
font-family: 'Oswald';
font-weight: 400;
margin-left: 0;
}
.large {
font-size: 42px;
}
.small {
font-size: 20px;
}
/* regular slide */
.remark-slide-content {
background-color: #FAFAFA;
border-bottom: 5px solid #ff5f0f;
font-size: 28px;
font-weight: 300;
line-height: 1.2;
padding: 1em 3em 1em 3em;
}
/* inverse slide */
.inverse {
background-color: #121316;
color: #ffffff;
text-shadow: 0 0 0px #333;
}
/* header colors are the same regardless of inverse or not*/
.remark-slide-content h1, .inverse h1 {
color: #ff5f0f;
font-size: 48px;
}
.remark-slide-content h2, .inverse h2 {
color: #b7b7b7;
font-size: 35px;
}
.remark-slide-content h3, .inverse h3 {
color: #5b5b5b;
font-size: 25px;
}
.remark-slide-content h4, .inverse h3 {
color: #ff5f0f;
font-size: 80px;
}
/* title slide */
.title-slide {
/*background-color: #121316;*/
background-color: #FAFAFA;
}
.title-slide h1 {
color: #ff5f0f;
font-size: 80px;
font-weight: 700;
text-align: center;
margin-left: 40px;
padding-top: 60px;
}
.title-slide h2 {
color: #FAFAFA;
font-size: 48px;
font-weight: 350;
text-align: center;
margin-left: 40px;
margin-top: -25px;
padding-bottom: -20px;
}
.title-slide h3 {
color: #b7b7b7;
font-size: 48px;
font-weight: 500;
text-align: center;
margin-left: 40px;
margin-bottom: 0;
}
/* slide number */
.remark-slide-number {
font-size: 10pt;
font-family: 'EB Garamond';
color: #272822;
opacity: 1;
}
.inverse .remark-slide-number {
font-size: 10pt;
font-family: 'EB Garamond';
color: #FAFAFA;
opacity: 1;
}
/* code */
.remark-inline-code {
color: #ff4c00;
border-radius: 1px;
padding: 0;
background: #e0e0e0;
}
.inverse .remark-inline-code {
background: #333333;
}
.remark-code-line-highlighted {
background-color: #ffead3;
}