-
Notifications
You must be signed in to change notification settings - Fork 16
/
input.css
61 lines (50 loc) · 1.21 KB
/
input.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
@tailwind base;
@tailwind components;
@tailwind utilities;
.custom-shape-divider-top-1692767000 {
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
}
.custom-shape-divider-top-1692767000 svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 150px;
/* TODO: fix the border made it with drop-shadow */
filter: drop-shadow(5px 5px 0px #ffffff);
}
.group:hover > span.badge-container {
@apply first:min-h-6 items-center justify-center transition-all transform duration-1000;
}
.group:hover > span.badge-container > span.badge-content {
@apply not-sr-only transition-all transform duration-1000;
}
.list{
@apply grid grid-flow-col auto-cols-min items-center justify-between gap-3 overflow-x-auto snap-x snap-mandatory;
}
.list-container {
@apply min-w-80 md:min-w-[420px];
}
.image-container img:not(:first-child) {
@apply opacity-60
}
.image-container {
position: relative;
width: 100%;
height: auto;
}
/*
* Navigation styles
*/
.nav-item {
cursor: pointer;
}
.nav-item:after {
content: '';
@apply block border border-orange-600 transition-transform ease-in-out duration-200 scale-x-0;
}
.nav-item:hover:after {
@apply scale-x-100;
}