-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
128 lines (108 loc) · 2.13 KB
/
globals.css
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
padding: 0;
margin: 0;
font-family: var(--font-arial);
cursor: url(/posts/cursorhjerte.png), auto;
}
@layer base {
p {
@apply text-base;
}
h1 {
@apply text-6xl;
}
h2 {
@apply text-5xl;
}
h3 {
@apply text-4xl;
}
h4 {
@apply text-3xl;
}
h5 {
@apply text-2xl;
}
h6 {
@apply text-lg;
}
}
@font-face {
font-family: 'Necto-Mono';
src: url('/fonts/Necto-Mono.woff2') format('woff2'),
url('/fonts/Necto-Mono.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Dauphine-Regular';
src: url('/fonts/Dauphine-Regular.woff2') format('woff2'),
url('/fonts/Dauphine-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
font-family: 'Necto-Mono', sans-serif; /* Default font */
}
main {
flex: 1; /* Or flex-grow: 1;*/
}
h1 {
font-family: var(--font-Necto-Mono);
}
h2 {
font-family: var(--font-Dauphine-Regular);
}
h3 {
font-family: var(--font-Dauphine-Regular);
}
a {
color: rgb(255 26 102);
text-decoration: underline;
cursor: url(/posts/cursorhjerte.png), pointer;
}
a:hover {
text-decoration:none;
cursor: url(/posts/cursorregnbue.png), pointer;
}
@layer utilities {
/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.custom-font-necto-h1 {
font-family: 'Necto-Mono', sans-serif;
font-size: 57em;
}
.custom-font-necto-h3 {
font-family: 'Necto-Mono', sans-serif;
font-size: 21em;
}
.custom-font-dauphine-h4 {
font-family: 'Dauphine-Regular', sans-serif;
font-size: 30em;
}
.custom-font-dauphine {
font-family: 'Dauphine-Regular', sans-serif;
}
.navhover {
background-color: #FFB2D9;
box-shadow: 0.3em 0.3em 1em rgb(0 0 0 / 60%);
position: relative;
}
.linkunderline {
text-decoration: wavy;
color: rgb(255 26 102);
}
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}