-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
32 lines (29 loc) · 684 Bytes
/
input.css
File metadata and controls
32 lines (29 loc) · 684 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
font-family: "Poppins", sans-serif;
overflow-x: hidden;
}
.hamburger > span {
@apply bg-black h-[2.5px] w-[20px] block transition duration-200;
}
.hamburger-active > span:nth-child(1) {
@apply rotate-45;
}
.hamburger-active > span:nth-child(2) {
@apply opacity-0;
}
.hamburger-active > span:nth-child(3) {
@apply -rotate-45;
}
.nav-item {
@apply px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg md:mt-0 md:ml-4 hover:text-blue-500 focus:text-blue-500;
}
.nav-item.active {
@apply text-blue-500;
}
.modal-btn {
@apply transition duration-200 hover:shadow-2xl hover:scale-105;
}