-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.css
86 lines (81 loc) · 1.55 KB
/
client.css
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
@font-face {
font-family: 'Arno Pro';
src: local('Arno Pro'), url('fonts/ArnoPro-Regular.otf');
}
@font-face {
font-family: 'Adobe Devanagari';
src: local('Adobe Devanagari'), url('fonts/AdobeDevanagari-Regular.otf');
}
@font-face {
font-family: 'SBL Hebrew';
src: local('SBL Hebrew'), url('fonts/SBL_Hbrw.otf');
}
@font-face {
font-family: 'Droid Naskh';
src: local('Droid Naskh'), url('fonts/DroidNaskh-Regular.ttf');
}
@font-face {
font-family: 'Estrangelo Edessa';
src: local('Estrangelo Edessa'), url('estre.ttf');
}
body {
font-family: 'Times', 'Times New Roman', serif;
text-rendering: optimizeLegibility;
margin: 0;
}
h1, h2, p, ul, pre {
max-width: 800px;
margin-left: auto;
margin-right: auto;
font-weight: inherit;
}
h2 {
text-align: center;
}
main {
border-top: 3px solid #99b;
}
main p, main ul {
max-width: initial;
}
main p {
background: #f8f4ff;
font-size: 5em;
margin-top: 8px;
margin-bottom: 8px;
padding: 4px 20px;
}
main ul {
margin: 0;
padding: 0;
list-style: none;
}
.letter {
color: #f5d30b;
-webkit-text-stroke: 1.5px black;
-webkit-text-fill-color: #f5d30b;
}
.diacritic {
color: #149adc;
}
body > p .letter {
-webkit-text-stroke-width: 0.5px;
}
:lang(en) {
font-family: 'Arno Pro';
}
:lang(el) {
font-family: 'Arno Pro';
}
:lang(sa) {
font-family: 'Adobe Devanagari';
}
:lang(he) {
font-family: 'SBL Hebrew';
}
:lang(ar) {
font-family: 'Droid Naskh';
}
:lang(syc) {
font-family: 'Estrangelo Edessa';
}