These are the style declarations for the bars:
Class: alert (Yellow)
Class: notice (Blue)
Class: notice2 (Green)
For RED you can use:
Class: notice3 (Red)
... and the common declarations (for all):
Class: alert (Yellow)
.alert {
background: #FFF6BF;
border-top: 2px solid #FFD324;
border-bottom: 2px solid #FFD324;
}
Class: notice (Blue)
.notice {
background: #ADCBE7;
border-top: 2px solid #0F5C8E;
border-bottom: 2px solid #0F5C8E;
}
Class: notice2 (Green)
.notice2 {
background: #D6ECA6;
border-top: 2px solid #8DC93E;
border-bottom: 2px solid #8DC93E;
}
For RED you can use:
Class: notice3 (Red)
.notice3 {
background: #FFC5C5;
border-top: 2px solid #FF5959;
border-bottom: 2px solid #FF5959;
}
... and the common declarations (for all):
.alert, .notice, .notice2, .notice3 {
text-align: center;
margin: 10px auto;
padding: 5px 20px;
}