Animated shadow (#540)

* Update antd.min.css

* Update settings.html

* Update custom.css

* Update custom.css
This commit is contained in:
Tara Rostami 2023-05-27 14:14:35 +03:30 committed by GitHub
parent 31339d6bf8
commit 2c233dffa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {