blob: 02772985dcf0db7cb9cc548872b89e4fa26ddde5 (
plain) (
blame)
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
|
@import "tailwindcss";
@layer base {
h1 {
@apply text-2xl;
}
h2 {
@apply text-xl;
}
h3 {
@apply text-lg;
}
}
html,
body {
margin: auto;
padding: 0;
height: 100%;
width: 50vw;
min-width: 300px;
max-width: 700px;
display: flex;
flex-direction: column;
}
main {
flex: 1;
}
.footer {
flex: 0;
background-color: green;
}
body {
font-family: "Maple Mono", monospace;
}
|