-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (83 loc) · 1.27 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
.title {
text-align: center;
}
.subtitle {
font-weight: medium;
font-size: 18px;
margin: 10px 0px;
}
body {
font-family: Georgia, 'Times New Roman', Times, serif;
line-height: 1.4;
font-size: 16px;
padding: 0 10px;
margin: 60px auto;
max-width: 700px;
background-color: #fafaf7;
}
a:link,
a:visited {
color: darkblue;
text-decoration: none;
font-weight: 550;
}
.subsection {
display: flex;
flex-direction: column;
gap: 18px;
}
.text {
margin: 0;
padding: 0;
}
.bullets {
display: flex;
flex-direction: column;
margin: 0;
padding-left: 24px;
gap: 3px;
}
.spacer {
height: 24px;
}
.small-spacer {
height: 8px;
}
.blog-header {
display: flex;
flex-direction: column;
gap: 4px;
margin: 24px 0 4px 0;
font-size: 28px;
font-weight: 600;
}
.blog-date {
font-size: 14px;
font-weight: 400;
font-style: italic;
}
.blog-list {
display: flex;
flex-direction: column;
gap: 10px;
padding: 20px 0;
}
.align-center {
display: flex;
justify-content: center;
align-items: center;
margin: 16px;
}
.align-col {
display: flex;
flex-direction: column;
gap: 12px;
justify-content: center;
align-items: center;
margin: 16px;
}
.small-title {
font-size: 17px;
margin: 6px 0px;
text-decoration: underline;
}