More actions
No edit summary |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
. | .lg_warn{ | ||
color:white; | |||
padding-top:25px; | |||
text-align:center; | |||
} | } | ||
. | .lg_warn_left{ | ||
color:white; | |||
text-align:left; | |||
} | } | ||
.lg_btn{ | .lg_btn{ | ||
width:50%; | width:50%; | ||
border: 2px solid #57595e; | |||
border-radius:5pt; | |||
} | } | ||
.lg_popup{ | .lg_popup{ | ||
color:white; | color:white; | ||
width: 400px; | |||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); | |||
background-color: #343538; | background-color: #343538; | ||
border: 3px solid #383943; | border: 3px solid #383943; |
Revision as of 12:21, 27 October 2024
.lg_warn{ color:white; padding-top:25px; text-align:center; } .lg_warn_left{ color:white; text-align:left; } .lg_btn{ width:50%; border: 2px solid #57595e; border-radius:5pt; } .lg_popup{ color:white; width: 400px; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); background-color: #343538; border: 3px solid #383943; border-radius:10pt; animation: lg_show_popup 0.3s ease-out forwards; } .lg_hide { animation: lg_hide_popup 0.3s ease-in forwards; } @keyframes lg_show_popup{ from { transform: scale(0.50); } to{ transform: scale(1); } } @keyframes lg_hide_popup{ from { transform: scale(1); } to { transform: scale(0); } } } }