-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
39 lines (38 loc) · 1.19 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.button {
@apply text-white relative border-[none] after:transition-all after:duration-[0.75s] after:content-[''] after:h-6 after:absolute after:border-0 after:border-transparent after:w-0 after:border-b-[3px] after:border-b-[#CA9C5E] after:border-solid after:left-0 after:-bottom-0.5 hover:after:h-full hover:after:w-full;
}
.zoom {
@apply transition-transform duration-[0.2s] mx-auto my-0 hover:scale-105 cursor-pointer;
}
.myHidden {
@apply opacity-0 blur-[5px] -translate-x-full transition-all duration-[2s];
}
.myShow {
@apply opacity-100 blur-none translate-x-0;
}
.myHiddenRight {
@apply opacity-0 blur-[5px] translate-x-full transition-all duration-[2s] overflow-x-hidden;
}
.myShowRight {
@apply opacity-100 blur-none translate-x-0 relative;
}
.popOut {
@apply opacity-0 blur-[5px] transition-all duration-[2s] scale-0;
}
.popIn {
@apply opacity-100 blur-none scale-100;
}
.myBlur {
@apply backdrop-blur-[10px] z-[100] fixed;
}
.selectEdit {
@apply selection:text-white selection:bg-black;
}
.centered {
@apply absolute m-auto inset-0;
}
}