-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (97 loc) · 1.5 KB
/
style.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
:root {
--highlight-color: #c2865d;
}
* {
font-family: "EB Garamond";
margin: 0;
}
body {
padding: 0em 0em 8em;
font-size: 20px;
}
.main-img {
display: block;
width: 100%;
}
p.img {
font-size: 12pt;
margin-top: 4pt;
color: gray;
width: 60%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
p.img a {
color: inherit;
}
.top-img {
margin-bottom: 4em;
}
.top {
width: 50%;
margin: auto;
margin-bottom: 4em;
}
.date {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
padding: 0px 36px;
}
.date hr {
background-color: var(--highlight-color);
width: auto;
height: 2px;
flex-grow: 1;
}
.date p {
font-size: 16px;
font-family: Helvetica;
color: gray;
}
.title {
display: block;
width: 100%;
background-color: white;
text-align: center;
margin: 0.2em 0em 0.2em;
}
.title h3 {
font-size: 32pt;
font-weight: 600;
}
.author {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.content, .footer {
width: 60%;
}
.content {
margin: auto;
min-width: min(32em, 90%);
}
.content p {
margin: 2em 0em;
}
.content h4 {
font-size: 32px;
margin: 1em 0em 0em;
}
.content a {
color: var(--highlight-color);
text-decoration: none;
}
.content span {
font-size: 48px;
font-weight: bold;
}
.content img {
display: block;
margin-left: auto;
margin-right: auto;
}