forked from p15670423/monkey
13 lines
370 B
CSS
13 lines
370 B
CSS
|
.label {
|
||
|
color: white;
|
||
|
padding: 3px;
|
||
|
border-radius: 5px;
|
||
|
-moz-border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.success {background-color: #4CAF50;} /* Green */
|
||
|
.info {background-color: #2196F3;} /* Blue */
|
||
|
.warning {background-color: #ff9800;} /* Orange */
|
||
|
.danger {background-color: #f44336;} /* Red */
|
||
|
.other {background-color: #e7e7e7; color: black;} /* Gray */
|