blob: 75bc06ba54b4f1bb74a983e354df2aabf5181802 (
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
|
@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;
src: url('/assets/fonts/SBL_Hebrew.ttf');
unicode-range: U+0590-05FF, U+FB1D-FB4F;
}
body {
font-family: Hebrew, sans-serif;
}
.container {
max-width: 970px;
}
.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;
}
p#lead {
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;
}
&.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;
}
}
}
}
tr {
td, th {
padding-right: 1em;
vertical-align: top;
&:last-child {
padding-right: 0;
}
}
}
margin-bottom: 6px;
}
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;
}
|