-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.css
49 lines (38 loc) · 909 Bytes
/
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.item {
@apply flex items-center justify-between text-[15px] px-4 py-2 font-medium duration-200 rounded-lg shadow outline-1 outline-zinc-600 outline drop-shadow;
}
.goto-btn {
@apply bg-blue-300 border-none rounded-lg btn btn-sm hover:bg-blue-400;
}
.del-btn {
@apply bg-red-300 border-none rounded-lg btn btn-sm hover:bg-red-400;
}
.btn-group {
@apply flex flex-row gap-2;
}
[data-theme='dark'] .item {
@apply hover:bg-zinc-800;
}
[data-theme='light'] .item {
@apply hover:bg-zinc-100;
}
.video-item {
@apply rounded-lg;
}
.video-frame {
@apply h-[35vh] w-[30vw] rounded-lg shadow-sm mb-4;
}
.video-title {
@apply text-lg font-semibold;
}
.link-list {
@apply flex flex-row flex-wrap gap-4;
}
.link-item {
@apply text-base text-blue-400 duration-200 hover:text-blue-500;
}
}