blob: 94045c4005582d84e178394c91a73df3e281dfb6 (
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
|
@import "bootstrap";
@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;
}
img#profile {
margin: 1em 1em 1em 0;
}
div#basicinfo {
margin-top: 1em;
}
hr {
clear: both;
margin: 0;
}
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;
}
|