1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@import url('https://fonts.googleapis.com/css2?family=Montaga&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
.text-display {
font-family: "Montaga", "Open Sans", sans-serif;
}
.text-code {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
@apply rounded bg-gray-700 px-2 py-1 text-sm;
}
body {
font-family: "Open Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
@apply text-display;
}
.text-glow {
text-shadow: 0 0 4px;
}
|