Last active
June 15, 2018 17:53
-
-
Save em0ney/9221032 to your computer and use it in GitHub Desktop.
A list-group-addon for prepending glyphicons to list groups in Bootstrap-3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="list-group"> | |
<li class="list-group-item-cust list-group-item"><span class="list-group-addon glyphicon glyphicon-calendar"></span> | |
8th March 2014</li> | |
<li class="list-group-item-cust list-group-item"><span class="list-group-addon glyphicon glyphicon-time"></span> | |
10:00</li> | |
<li class="list-group-item-cust list-group-item"><span class="list-group-addon glyphicon glyphicon-flag"></span> | |
Location</li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.list-group-item-cust { | |
padding-left: 0px; | |
} | |
.list-group-addon { | |
padding: 10px 10px; | |
font-size: 15px; | |
display:inline; | |
font-weight: normal; | |
line-height: 1; | |
color: #555555; | |
text-align: center; | |
background-color: #eeeeee; | |
border: 1px solid #cccccc; | |
border-radius: 6px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment