blob: f9bf4b262aab699d8150c72b3f75d82a4f5bd69e (
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
/* HERO */
#hero {
text-shadow: 2px 2px 3px black;
}
blockquote::before {
font-family: "Font Awesome 6 Free";
color: #79c753;
content: "\f10d";
font-weight: 900;
font-size: 2rem;
position: absolute;
left: 10px;
top: -15px;
}
.baskerville {
font-family: baskerville, serif;
}
.w3-theme-border {
border-color: #79c753;
}
@layer base {
blockquote {
@apply border-l-4 p-6 pb-1 mx-8 relative w3-theme-border baskerville;
}
blockquote p:last-of-type {
@apply text-center uppercase mt-4;
}
}
|