summaryrefslogtreecommitdiffhomepage
path: root/resources/sass/style.scss
blob: 723f68c0271a9189943d8c8028fc14b2be4d4e22 (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
@import "bootstrap-sass/assets/stylesheets/bootstrap";

@import "@fortawesome/fontawesome-free/scss/fontawesome";
@import "@fortawesome/fontawesome-free/scss/brands";
@import "@fortawesome/fontawesome-free/scss/solid";

@import "academicons/css/academicons";

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

@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;
}

@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 {
		border-right: 1px solid #eee;
		padding: 1em 1em 1em 0;
		position: sticky;
		top: 1em;
	}

	#sticky-nav li {
		float: none;
	}

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

.greyed-out {
	color: #888;
}

.larger {
	font-size: larger;
}

.nowrap {
	white-space: nowrap;
}

abbr {
	border-width: 0 !important;
}

img#profile {
	margin: 1em 1em 1em 0;
}

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

hr {
	clear: both;
	margin: 0;
}

a {
	code {
		color: inherit;
	}

	/* FontAwesome and Academicons */
	.ai, .fab {
		color: $text-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:last-child > p {
			margin-left: 2em;
			text-indent: -1em;

			/* Some ugly hard-coding to get the OA links to align nicely */
			> a.oa {
				display: inline-block;

				> i {
					margin-left: .3em;
				}
			}
		}

		&.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;
}

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;
}

.breadcrumb {
	margin-bottom: 0;
}