Skip to content

Instantly share code, notes, and snippets.

@puneetlakhina
Created June 29, 2012 23:24
Show Gist options
  • Save puneetlakhina/3021364 to your computer and use it in GitHub Desktop.
Save puneetlakhina/3021364 to your computer and use it in GitHub Desktop.
CSS for Horizontal Success/Fail/Warn with bootstrap
.status-ul {
list-style: none;
padding:0;
margin:0;
font-size: 8px;
}
.status-item {
display:inline;
border-style: solid;
border-width: 1px;
}
.status-ok {
background-color: green;
}
.status-warn {
background-color: yellow;
}
.status-failed {
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment