forked from RustLangES/RustLangES.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
71 lines (58 loc) · 1.41 KB
/
input.css
File metadata and controls
71 lines (58 loc) · 1.41 KB
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
@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 items-center justify-center transition-all transform duration-1000;
}
.group:hover > span.badge-container:first-child {
@apply min-h-6;
}
.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;
}
.bg-chiwa {
background-image: url("https://pngimg.com/uploads/clown/clown_PNG1.png");
background-repeat: no-repeat;
background-size: cover;
}