-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prestige.css
103 lines (90 loc) · 1.99 KB
/
.prestige.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
:root {
/* Base Colors */
--scrollPrimaryRgb: 51, 51, 51;
--scrollSurfaceRgb: 204, 204, 204;
--scrollTextBase: 51, 51, 51;
--scrollLinkBase: 0, 0, 0;
/* Semantic Colors */
--scrollColorBackground: rgb(250, 250, 250);
--scrollColorText: rgba(var(--scrollTextBase), 1);
--scrollColorLink: rgb(var(--scrollLinkBase), 1);
--scrollColorSubdued: rgb(102, 102, 102);
/* Typography */
--scrollFontPrimary: "Georgia", "Times New Roman", serif;
--scrollFontUi: "Baskerville", "Times New Roman", serif;
--scrollFontMono: monospace;
--scrollBaseFontSize: 17.6px;
--scrollLineHeight: 1.8;
}
/* Title Styling */
h1 {
font-family: var(--scrollFontUi);
font-size: 2.5rem;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--scrollColorLink);
margin-bottom: 1rem;
}
/* Subtitle Styling */
h2,
.printDateParser,
.printAuthorsParser {
font-size: 1.25rem;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #555555;
margin-bottom: 1rem;
}
.printAuthorsParser {
font-weight: bold;
}
.printTitleParser a {
text-decoration: none;
color: var(--scrollColorLink);
}
a {
color: var(--scrollColorLink);
text-decoration-color: transparent;
}
a:hover {
text-decoration-color: unset;
}
/* Drop Cap Styling */
.dropcap::first-letter {
font-family: var(--scrollFontPrimary);
font-size: 4rem;
float: left;
line-height: 0.8;
margin-right: 0.5rem;
margin-top: 0.2rem;
font-weight: bold;
color: var(--scrollColorLink);
}
/* Paragraph Styling */
p {
font-size: var(--scrollBaseFontSize);
text-align: justify;
margin-bottom: 1.5rem;
}
/* Blockquote Styling */
blockquote {
font-style: italic;
color: var(--scrollColorSubdued);
border-left: 4px solid rgba(var(--scrollSurfaceRgb), 1);
padding-left: 1rem;
margin: 1.5rem 0;
}
/* Additional Fine-Tuning */
h1,
h2 {
margin-top: 0;
}
.abstractDinkusParser {
text-align: center;
padding: 1rem;
}
.abstractDinkusParser span {
vertical-align: sub;
}