70 lines
1.0 KiB
CSS
70 lines
1.0 KiB
CSS
.alert {
|
|
border-width: 0 1px 4px 1px;
|
|
}
|
|
|
|
.alert .alert-link {
|
|
font-weight: normal;
|
|
color: #fff;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.alert-success, .alert-primary, .alert-danger, .alert-secondary, .alert-warning {
|
|
color: #fff;
|
|
}
|
|
|
|
.alert-success {
|
|
background-color: #28b62c;
|
|
border-color: #24a528;
|
|
}
|
|
|
|
.alert-success hr {
|
|
border-top-color: #209023;
|
|
}
|
|
|
|
.alert-success .alert-link {
|
|
color: #e6e6e6;
|
|
}
|
|
|
|
.alert-secondary {
|
|
background-color: #ff4668;
|
|
border-color: #F72754;
|
|
}
|
|
|
|
.alert-secondary hr {
|
|
border-top-color: #d61a46;
|
|
}
|
|
|
|
.alert-secondary .alert-link {
|
|
color: #e6e6e6;
|
|
}
|
|
|
|
.alert-warning {
|
|
background-color: #ff851b;
|
|
border-color: #ff7701;
|
|
}
|
|
|
|
.alert-warning hr {
|
|
border-top-color: #e76b00;
|
|
}
|
|
|
|
.alert-warning .alert-link {
|
|
color: #e6e6e6;
|
|
}
|
|
|
|
.alert-danger {
|
|
background-color: #ff4136;
|
|
border-color: #ff1103;
|
|
}
|
|
|
|
.alert-danger hr {
|
|
border-top-color: #e90d00;
|
|
}
|
|
|
|
.alert-danger .alert-link {
|
|
color: #e6e6e6;
|
|
}
|
|
|
|
.alert-primary {
|
|
background-color: #2272ff;
|
|
border-color: #3562c1;
|
|
} |