2024-01-05 13:56:46 +00:00
|
|
|
.alert {
|
2024-01-05 21:40:32 +00:00
|
|
|
position: fixed;
|
|
|
|
bottom: 3em;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, 50%);
|
|
|
|
z-index: 1;
|
2024-01-05 13:56:46 +00:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
|
|
|
line-height: 1.8;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: hand;
|
|
|
|
cursor: pointer;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-weight: 400;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.alertCheckbox {
|
2024-01-05 13:56:46 +00:00
|
|
|
display: none;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
:checked + .alert {
|
2024-01-05 13:56:46 +00:00
|
|
|
display: none;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.alertText {
|
2024-01-05 13:56:46 +00:00
|
|
|
display: table;
|
|
|
|
margin: 0 auto;
|
2024-01-22 10:49:08 +00:00
|
|
|
padding: 0 5px 0 0;
|
2024-01-05 13:56:46 +00:00
|
|
|
text-align: center;
|
2024-01-22 10:49:08 +00:00
|
|
|
font-size: 20px;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.alertClose {
|
2024-01-05 13:56:46 +00:00
|
|
|
float: right;
|
|
|
|
padding-top: 5px;
|
2024-01-22 10:49:08 +00:00
|
|
|
font-size: 15px;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.clear {
|
2024-01-05 13:56:46 +00:00
|
|
|
clear: both;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.info {
|
2024-01-05 13:56:46 +00:00
|
|
|
background-color: #EEE;
|
|
|
|
border: 1px solid #DDD;
|
|
|
|
color: #999;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.success {
|
2024-01-05 13:56:46 +00:00
|
|
|
background-color: #EFE;
|
|
|
|
border: 1px solid #DED;
|
|
|
|
color: #9A9;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.notice {
|
2024-01-05 13:56:46 +00:00
|
|
|
background-color: #EFF;
|
|
|
|
border: 1px solid #DEE;
|
|
|
|
color: #9AA;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.warning {
|
2024-01-05 13:56:46 +00:00
|
|
|
background-color: #FDF7DF;
|
|
|
|
border: 1px solid #FEEC6F;
|
|
|
|
color: #C9971C;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|
2024-01-05 13:56:46 +00:00
|
|
|
|
2024-01-05 21:40:32 +00:00
|
|
|
.error {
|
2024-01-05 13:56:46 +00:00
|
|
|
background-color: #FEE;
|
|
|
|
border: 1px solid #EDD;
|
|
|
|
color: #A66;
|
2024-01-05 21:40:32 +00:00
|
|
|
}
|