-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyles.css
More file actions
124 lines (105 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
124 lines (105 loc) · 1.67 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
/* Reset Quarto defaults that interfere with the layout */
body {
font-family: "Helvetica Neue", Arial, sans-serif;
background: #f4f6f8;
color: #1f2d3d;
}
/* Hide default Quarto page title since we use our own hero */
.quarto-title-block {
display: none;
}
.container {
max-width: 800px;
margin: auto;
background: white;
}
/* HERO */
.hero {
display: grid;
grid-template-columns: auto 1fr auto;
padding: 10px;
align-items: center;
gap: 60px;
}
.hero h1 {
font-size: 36px;
margin: 0;
color: #163A5F;
}
.hero p {
font-size: 18px;
margin-top: 10px;
color: #163A5F;
}
.hero img {
width: 100%;
}
/* DATE BAR */
.date-bar {
background: #163A5F;
color: white;
padding: 10px 40px;
display: flex;
align-items: center;
gap: 20px;
}
.date-bar strong {
font-size: 20px;
}
/* SECTION TITLE */
.section-title {
text-align: center;
font-weight: bold;
margin: 10px 0 5px;
color: #163A5F;
letter-spacing: 1px;
}
/* CONTENT GRID */
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
padding: 5px 20px;
}
.card {
background: #eef3f7;
border-radius: 10px;
padding: 20px;
font-size: 15px;
}
.card h3 {
margin-top: 0;
color: #163A5F;
}
.card img {
width: 120px;
float: left;
margin-right: 15px;
}
.bullet {
margin: 10px 0;
}
/* LOWER SECTION */
.grid-2.alt {
margin-top: 10px;
}
.checklist li {
margin-bottom: 8px;
}
/* FOOTER */
.footer {
background: #163A5F;
color: white;
margin-top: 10px;
padding: 5px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer strong {
font-size: 20px;
}
.thumbnail img {
width: 100% !important;
height: 100% !important;
}