-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (48 loc) · 840 Bytes
/
styles.css
File metadata and controls
57 lines (48 loc) · 840 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
48
49
50
51
52
53
54
55
56
57
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: 'Aeonic Mono', monospace;
}
p {
@apply text-primary;
}
span {
@apply text-primary;
}
h1 {
@apply text-[40px] leading-[48px] text-primary md:text-[80px] md:leading-[88px];
}
h2 {
@apply text-[32px] leading-[32px] text-primary;
}
.scrollbar-none::-webkit-scrollbar {
display: none;
}
.scrollbar-none {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.hover-fix::before {
display: block;
content: attr(title);
font-weight: bold;
height: 0;
overflow: hidden;
visibility: hidden;
}
[type='text'],
[type='number'],
input:where(:not([type])) {
outline: 0;
border: none;
padding: 0;
outline-offset: 0;
}
[type='text']:focus {
outline: 0;
border: none;
padding: 0;
outline-offset: 0;
box-shadow: none;
}