-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.css
62 lines (54 loc) · 908 Bytes
/
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
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
margin: 0;
}
@media (max-width: 345px) {
body {
zoom: 0.7;
}
}
@media (min-width: 346px and max-width: 360px) {
body {
zoom: 0.88;
}
}
.no-scroll::-webkit-scrollbar {
display: none;
}
@keyframes left-to-right-and-right-to-left {
0% {
object-position: 0 0;
}
50% {
object-position: 100% 0;
}
100% {
object-position: 0 0;
}
}
@layer utilities {
.container {
@apply mx-auto px-4 max-w-6xl;
}
.realistic-marker-highlight {
position: relative;
}
.realistic-marker-highlight:before {
content: '';
background-color: #252530;
width: 110%;
height: 1em;
position: absolute;
z-index: -1;
filter: url('#marker-shape');
left: -0.1em;
right: -0.1em;
top: 0.1em;
padding: 0 0.5em;
}
.marker-shape {
filter: url('#marker-shape');
}
}