-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
35 lines (34 loc) · 837 Bytes
/
tailwind.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
.principal::after {
content: "";
position: absolute;
bottom: -5px;
left: 0px;
width: 100%;
height: 2px;
background-image: linear-gradient(to right, rgb(5, 5, 5), transparent);
}
.links a::after {
content: "";
position: absolute;
bottom: -5px;
left: 0px;
width: 100%;
height: 2px;
background-image: linear-gradient(to right, rgb(233, 137, 13), transparent);
}
.noticetitle::-webkit-scrollbar {
width: 8px;
}
.noticetitle::-webkit-scrollbar-thumb {
background: linear-gradient(transparent, #ee7f01, transparent);
border-radius: 6px;
}
.noticetitle::-webkit-scrollbar-thumb:hover {
background: linear-gradient(transparent, #0a551d, transparent);
border-radius: 6px;
}
}