mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-08-30 06:46:17 +00:00
Update settings.html
This commit is contained in:
parent
38a097d8a7
commit
e6528a9c0b
1 changed files with 24 additions and 6 deletions
|
@ -26,14 +26,32 @@
|
||||||
|
|
||||||
.alert-msg {
|
.alert-msg {
|
||||||
color: rgb(194, 117, 18);
|
color: rgb(194, 117, 18);
|
||||||
font-weight: bold;
|
font-weight: normal;
|
||||||
font-size: 20px;
|
font-size: 16px;
|
||||||
margin-top: 5px;
|
padding: .5rem 1rem;
|
||||||
padding: 16px 6px;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: 1px solid;
|
background: rgb(255 145 0 / 15%);
|
||||||
|
margin: 1.5rem 2.5rem 0rem 2.5rem;
|
||||||
|
border-radius: .5rem;
|
||||||
|
transition: all 0.5s;
|
||||||
|
animation: signal 3s cubic-bezier(0.18, 0.89, 0.32, 1.28) infinite;
|
||||||
|
}
|
||||||
|
.alert-msg:hover {
|
||||||
|
cursor: default;
|
||||||
|
transition-duration: .3s;
|
||||||
|
animation: signal 0.9s ease infinite;
|
||||||
|
}
|
||||||
|
@keyframes signal{
|
||||||
|
0%{
|
||||||
|
box-shadow: 0 0 0 0 rgba(194, 118, 18, 0.5);
|
||||||
|
}
|
||||||
|
50%{
|
||||||
|
box-shadow: 0 0 0 6px rgba(0 ,0,0,0);
|
||||||
|
}
|
||||||
|
100%{
|
||||||
|
box-shadow: 0 0 0 6px rgba(0 ,0,0,0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert-msg > i {
|
.alert-msg > i {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
|
|
Loading…
Reference in a new issue