Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/assets/css/custom.css19
1 files changed, 17 insertions, 2 deletions
diff --git a/web/assets/css/custom.css b/web/assets/css/custom.css
index b9f2d69e..97b0b548 100644
--- a/web/assets/css/custom.css
+++ b/web/assets/css/custom.css
@@ -202,8 +202,23 @@ body {
}
.ant-card-dark:hover {
- border-color: #e8e8e8;
- box-shadow: 0 1px 10px -1px rgb(154 175 238 / 70%);
+ /*border-color: #e8e8e8;*/
+ animation:light-shadow ease-in 3s infinite;
+}
+
+@keyframes light-shadow {
+ 0% {
+ box-shadow: 0 1px 10px -1px rgb(154 175 238 / 60%);
+ }
+ 20% {
+ box-shadow: 0 1px 10px -1px rgb(154 175 238 / 60%);
+ }
+ 60% {
+ box-shadow: 0 1px 11px 2px rgb(154 175 238 / 70%);
+ }
+ 100% {
+ box-shadow: 0 1px 10px -1px rgb(154 175 238 / 60%);
+ }
}
.ant-setting-textarea {