41 lines
747 B
CSS
41 lines
747 B
CSS
|
.alert {
|
||
|
position: relative;
|
||
|
margin-bottom: 1rem;
|
||
|
border: 1px solid transparent;
|
||
|
border-radius: .25rem;
|
||
|
padding: .75rem 4rem .75rem 1.25rem;
|
||
|
}
|
||
|
|
||
|
.alert span {
|
||
|
color: #0062ff;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.alert .close {
|
||
|
position: absolute;
|
||
|
top: -3px;
|
||
|
right: 0;
|
||
|
padding: .75rem 1.25rem;
|
||
|
color: inherit;
|
||
|
background-color: transparent;
|
||
|
border: 0;
|
||
|
-webkit-appearance: none;
|
||
|
float: right;
|
||
|
font-size: 1.5rem;
|
||
|
font-weight: 700;
|
||
|
line-height: 1;
|
||
|
text-shadow: 0 1px 0 #fff;
|
||
|
opacity: .5;
|
||
|
}
|
||
|
|
||
|
.alert-danger {
|
||
|
color: #721c24;
|
||
|
background-color: #f8d7da;
|
||
|
border-color: #f5c6cb;
|
||
|
}
|
||
|
|
||
|
.alert-success {
|
||
|
color: #0d630a;
|
||
|
background-color: #acffa9;
|
||
|
border-color: #acffa9;
|
||
|
}
|