25 lines
441 B
CSS
25 lines
441 B
CSS
.glyphicon::before {
|
|
position: absolute;
|
|
left: 4px;
|
|
margin: 0 13px;
|
|
font-family: 'Glyphicons Halflings';
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.glyphicon--home::before {
|
|
content: '\e021';
|
|
}
|
|
.glyphicon--book::before {
|
|
content: '\e043';
|
|
}
|
|
.glyphicon--user::before {
|
|
content: '\e008';
|
|
}
|
|
.glyphicon--login::before {
|
|
content: '\e161';
|
|
}
|
|
.glyphicon--logout::before {
|
|
content: '\e163';
|
|
}
|