blob: 70f23ff4934fbfc53e931bfaee717c2e41757f92 (
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
|
@import "bootstrap";
@import "fontawesome";
@import "brands";
@import "academicons";
@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;
}
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;
}
&.publications > tbody > tr > td:first-child {
min-width: 8em;
text-align: right;
}
&.publications > tbody > tr > td:last-child > p {
margin-left: 1em;
text-indent: -1em;
}
}
tr {
td {
vertical-align: top;
&:first-child {
padding-right: 1em;
}
}
}
margin-bottom: 6px;
}
span.tt {
font-family: monospace;
}
footer {
padding: 1em 0;
}
.obfuscate > span {
display: none;
}
|