-
Notifications
You must be signed in to change notification settings - Fork 24
/
base.css
50 lines (44 loc) · 809 Bytes
/
base.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
html, body {
font-size: 18px;
}
.imgclip {
clip-path: url(#svg-shape);
}
.gradient {
mask-image: linear-gradient(
to bottom,
rgb(0, 0, 0) 50%,
rgba(0, 0, 0, 0) 100%
);
}
@media print {
@page {
margin: 2cm 3cm;
}
body.safari {
margin: 1cm 3cm;
}
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
/* Apply the animation to the cursor */
.typewriter-cursor {
animation: blink 1s infinite;
color: rgb(222, 222, 222);
}
.wikilinks{
@apply text-neutral-500;
@apply dark:text-neutral-500;
}
.wikilinks a {
@apply text-neutral-500;
@apply dark:text-neutral-500;
}
}