-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabsidebar.css
More file actions
138 lines (112 loc) · 4.01 KB
/
Copy pathtabsidebar.css
File metadata and controls
138 lines (112 loc) · 4.01 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* .monaco-list-row.focused.selected {
background-image: linear-gradient(
90deg,
rgba(25, 26, 46, 1) 0%,
rgba(25, 26, 46, 0.12) 100%
),
linear-gradient(
90deg,
rgba(229, 71, 255, 0) 36.27%,
rgb(255, 71, 149) 71.37%,
rgb(255, 204, 71) 92.98%
) !important;
} */
.monaco-list-row.selected {
/* background-image: linear-gradient(var(--gradient-dir1),#fcb564,#ff65f2,#d66efd) !important; */
/* background-image: linear-gradient(
#00aefd,
#20e3b2,
#fcb564,
#ff65f2,
#ff69cf
); */
/* transform: translate3d(0%, 0%, 0) !important; */
/* animation: gradient 3s linear infinite; */
/* animation: gradient 5s ease alternate infinite !important; */
/* animation: spinner var(--duration) cubic-bezier(0.445, 0.05, 0.55, 0.95)
infinite; */
/* animation: grow-shrink 3s infinite !important; */
/* animation: slide-in 0.7s alternate cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite !important; */
/* animation: bounce 2s infinite; */
/* animation: color-slide-in var(--duration) cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite; */
/* backdrop-filter: blur(1.5px); */
--border-width: 1px;
font-family: Cascadia Code, sans-serif;
color: white;
position: absolute;
content: "";
top: calc(-1 * var(--border-width));
left: calc(-1 * var(--border-width));
z-index: -1;
width: calc(100% + var(--border-width) * 2);
height: calc(100% + var(--border-width) * 2);
background: linear-gradient(
/* 60deg, */
to right top,
#d16ba4, #c271b2, #af78be, #9b7ec5, #8584c9, #7a85ce, #6d87d2, #5d88d6, #5387e0, #4985eb, #3c83f5, #2d81ff);
background-size: 300% 300%;
background-position: 0 50%;
border-radius: 20px !important;
animation: moveGradient 4s alternate infinite;
/* Vuông gradient */
/* border:0.5px solid transparent;
border-width: 10px transparent !important; */
/* padding: 2rem 1rem;
min-height: 3em; */
/* resize: both; */
/* background: #ffd73e33; */
/* Base style with animated border */
border-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' height='40' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cstyle%3Epath%7Banimation:stroke 3s infinite linear%3B%7D%40keyframes stroke%7Bto%7Bstroke-dashoffset:776%3B%7D%7D%3C/style%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23407cff' /%3E%3Cstop offset='25%25' stop-color='%23da8bff' /%3E%3Cstop offset='50%25' stop-color='%23ff65f2' /%3E%3Cstop offset='100%25' stop-color='%23fcb564' /%3E%3C/linearGradient%3E %3Cpath d='M1.5 1.5 l97 0l0 97l-97 0 l0 -97' stroke-linecap='round' stroke='url(%23g)' stroke-width='50' stroke-dasharray='388'/%3E %3C/svg%3E") 1;
}
@keyframes moveSkulls {
0% {
background-position: 24px 0;
}
}
@keyframes moveGradient {
50% {
background-position: 100% 50%;
}
}
/* @keyframes spinner {
100% {
-webkit-border-image: translate(-50%, -50%) rotate(1turn);
}
} */
/* @keyframes grow-shrink {
25%,
75% {
scale: 90%;
}
50% {
scale: 100%;
color: rgb(255, 255, 255);
}
} */
/* @keyframes slide-in {
from {
translate: 150vw 0;
scale: 200% 1;
}
to {
translate: 0 0;
scale: 100% 1;
}
} */
/* @keyframes bounce {
0% { transform: translateX(-5); }
50% { transform: translateX(-5px); }
100% { transform: translateX(5); }
} */
/* @keyframes color-slide-in {
0% {
background-image: linear-gradient(var(--gradient-dir1), #407cff , #da8bff); }
25% {
background-image: linear-gradient(var(--gradient-dir2), #ff65f2 , #fcb564); }
50% {
background-image: linear-gradient(var(--gradient-dir3), #407cff , #da8bff); }
75% {
background-image: linear-gradient(var(--gradient-dir4),#ff65f2 , #fcb564); }
100% {
background-image: linear-gradient(var(--gradient-dir5), #407cff , #da8bff); }
} */