globals.css
621 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-neutral text-black;
}
}
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
h3{
font-size: 1.5rem;
font-weight: 500;
line-height: 1.5;
margin-bottom: 0.5rem;
}
.main {
margin-bottom: 2rem;
}
span.left-100.fixed {
left: 50%;
}
.footer {
position: flex;
bottom: 0;
left: 0;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}