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