summaryrefslogtreecommitdiffhomepage
path: root/resources/sass/style.scss
blob: 13242dbc7885b26a1bc228a3d2be3a1079890f48 (plain) (blame)
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
@use "bootstrap/dist/css/bootstrap";

@use "@fortawesome/fontawesome-free/scss/fontawesome";
@use "@fortawesome/fontawesome-free/scss/brands";
@use "@fortawesome/fontawesome-free/scss/regular";
@use "@fortawesome/fontawesome-free/scss/solid";

@use "academicons/css/academicons";

@use "highlight.js/scss/default";

@import "bootstrap/scss/functions";
@import "bootstrap/scss/variables";

@font-face {
	font-family: Hebrew;
	size-adjust: 120%;
	src: url('/assets/fonts/SBL_Hebrew.ttf');
	unicode-range: U+0590-05FF, U+FB1D-FB4F;
}

body {
	font-family: Hebrew, sans-serif;
	position: relative;
}

.container {
	max-width: 970px;
}

#sticky-nav {
	padding-top: 1em;
}

#sticky-nav li > a {
	display: inline-block;
	text-wrap: nowrap;
}

@media (max-width: 1269px) {
	/* Navigation in a sticky header */
	#sticky-nav {
		background: rgba(255, 255, 255, 0.9);
		border-bottom: 1px solid #eee;
		padding-bottom: 1em;
		position: sticky;
		top: 0;
	}

	/* Offset # links because of sticky header:
	 * https://stackoverflow.com/a/64998338 */
	:target:before {
		content: '';
		display: block;
		height: 150px;
		margin: -150px 0 0;
	}
}

@media (min-width: 1270px) {
	/* Navigation in a sticky sidebar. The sidebar is to the left of the
	 * content, below the profile image, but sticks to the top of the page when
	 * scrolling down. */
	#sticky-nav {
		display: table-cell;
		/* 970px is width of .container; 180px is width of #sticky-nav. This
		 * places the nav buttons to the left of the content. */
		left: calc(50% - 970px/2 - 180px);
		/* 216px is the height of the profile image. */
		padding-top: calc(216px + 2em);
		text-align: right;
		width: 180px;
	}

	#sticky-nav ul.nav {
		border-right: 1px solid #eee;
		flex-direction: column; /* .flex-column, but only on large screens */
		padding: 1em 1em 1em 0;
		position: sticky;
		top: 1em;
	}

	ul.nav li {
		display: block;
		float: none;
	}

	#content {
		display: table-cell;
		vertical-align: top;
	}
}

.greyed-out {
	color: #888;
}

.larger {
	font-size: larger;
}

.wrap-anywhere {
	word-wrap: anywhere; /* utlity to prevent horizontal scrolling on small screens */
}

@media (max-width: 1269px) {
	.opt-break {
		clear: both;
		display: inline-block;
	}
}

abbr {
	border-width: 0 !important;
}

header > div {
	@media (min-width: 500px) {
		display: table-row;

		img#profile {
			margin: 1em 1em 1em 0;
			max-width: 30vw;
		}

		div#basicinfo {
			margin-top: 1em;
		}
	}

	@media (max-width: 499px) {
		img#profile {
			margin: 1em 0;
			max-width: unset !important;
		}

		div#basicinfo {
			clear: both;
		}
	}
}

hr {
	clear: both;
	margin: 2ex 0;
}

a {
	code {
		color: inherit;
	}

	/* FontAwesome and Academicons */
	.ai, .fab {
		color: $body-color;
	}
	&:hover {
		.ai, .fab {
			color: $link-color;
		}
	}
}

table {
	&.main_table {
		> tbody > tr > td:first-child {
			min-width: 120px;
			white-space: nowrap;
		}

		&.publications > tbody > tr > td:first-child {
			min-width: 8em;
			text-align: right;
		}

		&.publications > tbody > tr > td.icon {
			padding-right: 0;
			text-align: center;
		}

		&.publications > tbody > tr > td:last-child > p {
			margin-left: 1.5em;
			text-indent: -1em;
		}

		&.presentations > tbody > tr {
			& > td:first-child {
				min-width: unset;
			}

			& > td:nth-child(2) {
				white-space: nowrap;
			}
		}
	}

	tr {
		td, th {
			padding-right: 1em;
			vertical-align: top;

			&:last-child {
				padding-right: 0;
			}
		}
	}

	margin-bottom: 6px;
}

@media (max-width: 1269px) {
	table.main_table {
		tr {
			display: block;
		}

		td:first-child {
			display: block;
			font-weight: bold;
			min-width: unset !important;
			text-align: initial !important;
		}

		td.icon {
			min-width: 1.5em;
		}

		&.presentations > tbody > tr {
			padding-bottom: 1ex;

			td:nth-child(2) {
				display: inline;
				padding-right: 0;

				&:after {
					content: ': ';
				}
			}

			td:last-child {
				display: inline;
			}
		}
	}
}

span.sc {
	font-variant-caps: small-caps;
}

span.tt {
	font-family: monospace;
}

/* markdown is used for page content, but h1 - h3 are already used for the page
 * title and subtitle. So we adapt the font size of the headings in the
 * markdown content so that they are not larger than the page title. */
.markdown {
	h1, h2, h3 { font-weight: bold; }
	h1 { font-size: 18px; } /* size of h4 */
	h2 { font-size: 14px; } /* size of h5 */
	h3 { font-size: 12px; } /* size of h5 */
}

pre code {
	tab-size: 4;
	-moz-tab-size: 4;
	white-space: pre;
}

pre code.lang-js {
	tab-size: 2;
	-moz-tab-size: 2;
}

blockquote {
	font-size: unset;
}

footer {
	padding: 1em 0;
}

.obfuscate > span {
	display: none;
}