-
Notifications
You must be signed in to change notification settings - Fork 5
/
my-theme.css
185 lines (182 loc) · 3.41 KB
/
my-theme.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Sans:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700);
body {
font-family: 'Droid Sans', 'sans-serif';
font-size: 120%;
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
p {
font-size: 120%;
}
a, a > code {
color: rgb(249, 38, 114);
text-decoration: none;
}
.frimg img {
background: transparent;
padding: 7px;
border: 1px solid #636363;
}
.black-border {
background: transparent;
padding: 7px;
border: 1px solid #000000;
}
.bb {
border: 5px solid #000000;
}
.large { font-size: 125% }
.small { font-size: 75% }
.blue-text { color: #488fdf }
.orange-text { color: #ff8100 }
.red-text { color: #c10101 }
.gray-text { color: #656565 }
.under { text-decoration: underline; }
.footnote {
position: absolute;
bottom: 2em;
padding-right: 4em;
font-size: 90%;
}
.futnote {
position: fixed;
bottom: 2em;
left: 5em;
font-size: 90%;
}
.citation {
position: fixed;
bottom: 2em;
right: 5em;
font-size: 90%;
}
/* Style the header with a grey background and some padding */
.hheader {
position:fixed;
top:1em;
right:1em;
}
/* Style the header links */
.hheader a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.remark-code, .remark-inline-code { font-family: 'Source Code Pro', 'Lucida Console', Monaco, monospace; }
.remark-code-line-highlighted { background-color: #ffff88; }
.remark-slide-number {
display: none;
}
.inverse {
background-color: #272822;
color: #d6d6d6;
text-shadow: 0 0 20px #333;
}
.inverse h1, .inverse h2, .inverse h3 {
color: #f3f3f3;
line-height: 1.0em;
}
.inverse-black {
background-color: #000000;
color: #d6d6d6;
text-shadow: 0 0 20px #333;
}
.inverse-blue {
background-color: #004080;
color: #ffffff;
text-shadow: 0 0 20px #333;
}
.title-slide h1 {
color: #F7F8FA;
}
.title-slide h2 {
color: #F7F8FA;
line-height: 1.0em;
}
.title-slide h3 {
font-style: italic;
color: #F7F8FA;
line-height: 1.1em;
}
/* Two-column layout */
.left-column {
color: #777;
width: 20%;
height: 92%;
float: left;
}
.left-column h2:last-of-type, .left-column h3:last-child {
color: #000;
}
.right-column {
width: 75%;
float: right;
padding-top: 1em;
}
.pull-left {
float: left;
width: 47%;
}
.pull-left-img {
float: left;
width: 35%;
padding-left: 5em;
}
.pull-right {
float: right;
width: 47%;
}
.pull-right ~ * {
clear: both;
}
.img-left-land {
float: left;
width: 60%;
}
.img-right-text {
float: right;
width: 35%;
}
.img-right-land {
float: right;
width: 60%;
}
.img-left-text {
float: left;
width: 35%;
}
img, video, iframe {
max-width: 100%;
}
blockquote {
border-left: solid 5px lightgray;
padding-left: 1em;
}
table {
margin: auto;
border-top: 1px solid #666;
border-bottom: 1px solid #666;
}
/* table thead th { border-bottom: 1px solid #ddd; } */
th, td { padding: 5px; }
/* thead, tfoot, tr:nth-child(even) { background: #eee } */
@page { margin: 0; }
@media print {
.remark-slide-scaler {
width: 100% !important;
height: 100% !important;
transform: scale(1) !important;
top: 0 !important;
left: 0 !important;
}
}