-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.css
More file actions
174 lines (155 loc) · 2.85 KB
/
app.css
File metadata and controls
174 lines (155 loc) · 2.85 KB
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
@import '../oldvintage.css';
@import 'tailwindcss';
@import '@skeletonlabs/skeleton';
@import '@skeletonlabs/skeleton/optional/presets';
@source "../node_modules/@skeletonlabs/skeleton-svelte/dist";
@tailwind utilities;
@font-face {
font-family: "Cormorant Garamond";
src: url("/static/fonts/Cormorant-Regular.ttf") format("truetype");
font-style: normal;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: "Cormorant Garamond";
src: url("/static/fonts/Cormorant-Italic.ttf") format("truetype");
font-style: italic;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: "Cormorant Garamond";
src: url("/static/fonts/Cormorant-Bold.ttf") format("truetype");
font-style: normal;
font-weight: 700;
font-display: swap;
}
@font-face {
font-family: "Cormorant Garamond";
src: url("/static/fonts/Cormorant-BoldItalic.ttf") format("truetype");
font-style: italic;
font-weight: 700;
font-display: swap;
}
.typography {
h1:not(:where([class~='unstyled'], [class~='unstyled'] *)) {
@apply h1 mb-4;
}
h2:not(:where([class~='unstyled'], [class~='unstyled'] *)) {
@apply h2 my-4;
}
a:not(:where([class~='unstyled'], [class~='unstyled'] *, h2 > a, h3 > a, h4 > a)) {
@apply anchor;
}
p:not(:where([class~='unstyled'], [class~='unstyled'] *)) {
@apply mb-4;
}
ul:not(:where([class~='unstyled'], [class~='unstyled'] *)) {
@apply list-disc pl-4;
li:not(:where([class~='unstyled'], [class~='unstyled'] *)) {
@apply mb-2;
}
}
}
.fasskommanchor.single {
@apply text-green-600 z-10;
}
.fasskommanchor.multi {
@apply text-red-500 z-10;
}
.tei-content {
.image {
@apply italic;
}
.sr {
color: green;
}
.del_sr {
color: #666;
@apply line-through;
}
.subst,
.subst_sr {
color: green;
.deleted {
color: #666;
}
.rasure {
@apply bg-[#666];
}
}
.subst_ls {
color: #8cfff4;
.deleted {
color: #666;
}
.rasure {
@apply bg-[#666];
}
}
.red {
color: #f60;
@apply decoration-red-500;
}
.underline {
text-decoration: underline;
}
.marginalia {
@apply italic;
@apply ml-4;
}
.corr,
.note {
@apply italic;
}
.gap {
color: green;
@apply bg-[#9f9f9f];
}
.fragment-loss {
@apply bg-transparent;
color: #666;
}
.initial,
.glory-initial,
.capital-initial {
@apply font-bold;
@apply text-2xl;
@apply text-red-500;
}
.majuscule,
.large-variant {
@apply font-black;
@apply text-base;
}
.glory-initial {
@apply bg-[gold];
}
.verse + .content:has(.versechange) {
&::after {
content: '\2195';
@apply inline;
@apply h-4;
@apply ml-2;
}
}
.not-executed {
@apply text-red-500;
&::before {
content: '\005B';
@apply text-surface-contrast-500;
@apply inline;
@apply h-4;
}
&::after {
content: '\005D';
@apply text-surface-contrast-500;
@apply inline;
@apply h-4;
}
}
.deleted + .added::before {
content: ' ';
}
}