34 lines
585 B
CSS
34 lines
585 B
CSS
.glyphicon {
|
|
display: inline-block;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
.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--profile::before {
|
|
content: '\e019';
|
|
}
|
|
.glyphicon--user::before {
|
|
content: '\e008';
|
|
}
|
|
.glyphicon--login::before {
|
|
content: '\e161';
|
|
}
|
|
.glyphicon--logout::before {
|
|
content: '\e163';
|
|
}
|