aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/styles/blog.css
blob: 9cfe3fa26c5b5831854dde7f5a0aac40e97087ff (plain)
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
main {
	width: calc(100% - 2em);
	max-width: 100%;
	margin: 0;
}
.hero-image {
	width: 100%;
}
.hero-image img {
	display: block;
	margin: 0 auto;
	border-radius: 12px;
	box-shadow: var(--box-shadow);
}
.prose {
	width: 720px;
	max-width: calc(100% - 2em);
	margin: auto;
	padding: 1em;
	color: rgb(var(--gray-dark));
}
.title {
	margin-bottom: 1em;
	padding: 1em 0;
	text-align: center;
	line-height: 1;
}
.title h1 {
	margin: 0 0 0.5em 0;
}
.date {
	margin-bottom: 0.5em;
	color: rgb(var(--gray));
}
.last-updated-on {
	font-style: italic;
}