static/less/glyphicons.less
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:30:44 +0100
changeset 53 3416f82943ea
permissions -rwxr-xr-x
less initial added
info@53
     1
//
info@53
     2
// Glyphicons for Bootstrap
info@53
     3
//
info@53
     4
// Since icons are fonts, they can be placed anywhere text is placed and are
info@53
     5
// thus automatically sized to match the surrounding child. To use, create an
info@53
     6
// inline element with the appropriate classes, like so:
info@53
     7
//
info@53
     8
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
info@53
     9
info@53
    10
// Import the fonts
info@53
    11
@font-face {
info@53
    12
  font-family: 'Glyphicons Halflings';
info@53
    13
  src: ~"url('@{icon-font-path}@{icon-font-name}.eot')";
info@53
    14
  src: ~"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')",
info@53
    15
       ~"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')",
info@53
    16
       ~"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')",
info@53
    17
       ~"url('@{icon-font-path}@{icon-font-name}.svg#glyphicons-halflingsregular') format('svg')";
info@53
    18
}
info@53
    19
info@53
    20
// Catchall baseclass
info@53
    21
.glyphicon {
info@53
    22
  position: relative;
info@53
    23
  top: 1px;
info@53
    24
  display: inline-block;
info@53
    25
  font-family: 'Glyphicons Halflings';
info@53
    26
  font-style: normal;
info@53
    27
  font-weight: normal;
info@53
    28
  line-height: 1;
info@53
    29
  -webkit-font-smoothing: antialiased;
info@53
    30
  -moz-osx-font-smoothing: grayscale;
info@53
    31
info@53
    32
  &:empty {
info@53
    33
    width: 1em;
info@53
    34
  }
info@53
    35
}
info@53
    36
info@53
    37
// Individual icons
info@53
    38
.glyphicon-asterisk               { &:before { content: "\2a"; } }
info@53
    39
.glyphicon-plus                   { &:before { content: "\2b"; } }
info@53
    40
.glyphicon-euro                   { &:before { content: "\20ac"; } }
info@53
    41
.glyphicon-minus                  { &:before { content: "\2212"; } }
info@53
    42
.glyphicon-cloud                  { &:before { content: "\2601"; } }
info@53
    43
.glyphicon-envelope               { &:before { content: "\2709"; } }
info@53
    44
.glyphicon-pencil                 { &:before { content: "\270f"; } }
info@53
    45
.glyphicon-glass                  { &:before { content: "\e001"; } }
info@53
    46
.glyphicon-music                  { &:before { content: "\e002"; } }
info@53
    47
.glyphicon-search                 { &:before { content: "\e003"; } }
info@53
    48
.glyphicon-heart                  { &:before { content: "\e005"; } }
info@53
    49
.glyphicon-star                   { &:before { content: "\e006"; } }
info@53
    50
.glyphicon-star-empty             { &:before { content: "\e007"; } }
info@53
    51
.glyphicon-user                   { &:before { content: "\e008"; } }
info@53
    52
.glyphicon-film                   { &:before { content: "\e009"; } }
info@53
    53
.glyphicon-th-large               { &:before { content: "\e010"; } }
info@53
    54
.glyphicon-th                     { &:before { content: "\e011"; } }
info@53
    55
.glyphicon-th-list                { &:before { content: "\e012"; } }
info@53
    56
.glyphicon-ok                     { &:before { content: "\e013"; } }
info@53
    57
.glyphicon-remove                 { &:before { content: "\e014"; } }
info@53
    58
.glyphicon-zoom-in                { &:before { content: "\e015"; } }
info@53
    59
.glyphicon-zoom-out               { &:before { content: "\e016"; } }
info@53
    60
.glyphicon-off                    { &:before { content: "\e017"; } }
info@53
    61
.glyphicon-signal                 { &:before { content: "\e018"; } }
info@53
    62
.glyphicon-cog                    { &:before { content: "\e019"; } }
info@53
    63
.glyphicon-trash                  { &:before { content: "\e020"; } }
info@53
    64
.glyphicon-home                   { &:before { content: "\e021"; } }
info@53
    65
.glyphicon-file                   { &:before { content: "\e022"; } }
info@53
    66
.glyphicon-time                   { &:before { content: "\e023"; } }
info@53
    67
.glyphicon-road                   { &:before { content: "\e024"; } }
info@53
    68
.glyphicon-download-alt           { &:before { content: "\e025"; } }
info@53
    69
.glyphicon-download               { &:before { content: "\e026"; } }
info@53
    70
.glyphicon-upload                 { &:before { content: "\e027"; } }
info@53
    71
.glyphicon-inbox                  { &:before { content: "\e028"; } }
info@53
    72
.glyphicon-play-circle            { &:before { content: "\e029"; } }
info@53
    73
.glyphicon-repeat                 { &:before { content: "\e030"; } }
info@53
    74
.glyphicon-refresh                { &:before { content: "\e031"; } }
info@53
    75
.glyphicon-list-alt               { &:before { content: "\e032"; } }
info@53
    76
.glyphicon-lock                   { &:before { content: "\e033"; } }
info@53
    77
.glyphicon-flag                   { &:before { content: "\e034"; } }
info@53
    78
.glyphicon-headphones             { &:before { content: "\e035"; } }
info@53
    79
.glyphicon-volume-off             { &:before { content: "\e036"; } }
info@53
    80
.glyphicon-volume-down            { &:before { content: "\e037"; } }
info@53
    81
.glyphicon-volume-up              { &:before { content: "\e038"; } }
info@53
    82
.glyphicon-qrcode                 { &:before { content: "\e039"; } }
info@53
    83
.glyphicon-barcode                { &:before { content: "\e040"; } }
info@53
    84
.glyphicon-tag                    { &:before { content: "\e041"; } }
info@53
    85
.glyphicon-tags                   { &:before { content: "\e042"; } }
info@53
    86
.glyphicon-book                   { &:before { content: "\e043"; } }
info@53
    87
.glyphicon-bookmark               { &:before { content: "\e044"; } }
info@53
    88
.glyphicon-print                  { &:before { content: "\e045"; } }
info@53
    89
.glyphicon-camera                 { &:before { content: "\e046"; } }
info@53
    90
.glyphicon-font                   { &:before { content: "\e047"; } }
info@53
    91
.glyphicon-bold                   { &:before { content: "\e048"; } }
info@53
    92
.glyphicon-italic                 { &:before { content: "\e049"; } }
info@53
    93
.glyphicon-text-height            { &:before { content: "\e050"; } }
info@53
    94
.glyphicon-text-width             { &:before { content: "\e051"; } }
info@53
    95
.glyphicon-align-left             { &:before { content: "\e052"; } }
info@53
    96
.glyphicon-align-center           { &:before { content: "\e053"; } }
info@53
    97
.glyphicon-align-right            { &:before { content: "\e054"; } }
info@53
    98
.glyphicon-align-justify          { &:before { content: "\e055"; } }
info@53
    99
.glyphicon-list                   { &:before { content: "\e056"; } }
info@53
   100
.glyphicon-indent-left            { &:before { content: "\e057"; } }
info@53
   101
.glyphicon-indent-right           { &:before { content: "\e058"; } }
info@53
   102
.glyphicon-facetime-video         { &:before { content: "\e059"; } }
info@53
   103
.glyphicon-picture                { &:before { content: "\e060"; } }
info@53
   104
.glyphicon-map-marker             { &:before { content: "\e062"; } }
info@53
   105
.glyphicon-adjust                 { &:before { content: "\e063"; } }
info@53
   106
.glyphicon-tint                   { &:before { content: "\e064"; } }
info@53
   107
.glyphicon-edit                   { &:before { content: "\e065"; } }
info@53
   108
.glyphicon-share                  { &:before { content: "\e066"; } }
info@53
   109
.glyphicon-check                  { &:before { content: "\e067"; } }
info@53
   110
.glyphicon-move                   { &:before { content: "\e068"; } }
info@53
   111
.glyphicon-step-backward          { &:before { content: "\e069"; } }
info@53
   112
.glyphicon-fast-backward          { &:before { content: "\e070"; } }
info@53
   113
.glyphicon-backward               { &:before { content: "\e071"; } }
info@53
   114
.glyphicon-play                   { &:before { content: "\e072"; } }
info@53
   115
.glyphicon-pause                  { &:before { content: "\e073"; } }
info@53
   116
.glyphicon-stop                   { &:before { content: "\e074"; } }
info@53
   117
.glyphicon-forward                { &:before { content: "\e075"; } }
info@53
   118
.glyphicon-fast-forward           { &:before { content: "\e076"; } }
info@53
   119
.glyphicon-step-forward           { &:before { content: "\e077"; } }
info@53
   120
.glyphicon-eject                  { &:before { content: "\e078"; } }
info@53
   121
.glyphicon-chevron-left           { &:before { content: "\e079"; } }
info@53
   122
.glyphicon-chevron-right          { &:before { content: "\e080"; } }
info@53
   123
.glyphicon-plus-sign              { &:before { content: "\e081"; } }
info@53
   124
.glyphicon-minus-sign             { &:before { content: "\e082"; } }
info@53
   125
.glyphicon-remove-sign            { &:before { content: "\e083"; } }
info@53
   126
.glyphicon-ok-sign                { &:before { content: "\e084"; } }
info@53
   127
.glyphicon-question-sign          { &:before { content: "\e085"; } }
info@53
   128
.glyphicon-info-sign              { &:before { content: "\e086"; } }
info@53
   129
.glyphicon-screenshot             { &:before { content: "\e087"; } }
info@53
   130
.glyphicon-remove-circle          { &:before { content: "\e088"; } }
info@53
   131
.glyphicon-ok-circle              { &:before { content: "\e089"; } }
info@53
   132
.glyphicon-ban-circle             { &:before { content: "\e090"; } }
info@53
   133
.glyphicon-arrow-left             { &:before { content: "\e091"; } }
info@53
   134
.glyphicon-arrow-right            { &:before { content: "\e092"; } }
info@53
   135
.glyphicon-arrow-up               { &:before { content: "\e093"; } }
info@53
   136
.glyphicon-arrow-down             { &:before { content: "\e094"; } }
info@53
   137
.glyphicon-share-alt              { &:before { content: "\e095"; } }
info@53
   138
.glyphicon-resize-full            { &:before { content: "\e096"; } }
info@53
   139
.glyphicon-resize-small           { &:before { content: "\e097"; } }
info@53
   140
.glyphicon-exclamation-sign       { &:before { content: "\e101"; } }
info@53
   141
.glyphicon-gift                   { &:before { content: "\e102"; } }
info@53
   142
.glyphicon-leaf                   { &:before { content: "\e103"; } }
info@53
   143
.glyphicon-fire                   { &:before { content: "\e104"; } }
info@53
   144
.glyphicon-eye-open               { &:before { content: "\e105"; } }
info@53
   145
.glyphicon-eye-close              { &:before { content: "\e106"; } }
info@53
   146
.glyphicon-warning-sign           { &:before { content: "\e107"; } }
info@53
   147
.glyphicon-plane                  { &:before { content: "\e108"; } }
info@53
   148
.glyphicon-calendar               { &:before { content: "\e109"; } }
info@53
   149
.glyphicon-random                 { &:before { content: "\e110"; } }
info@53
   150
.glyphicon-comment                { &:before { content: "\e111"; } }
info@53
   151
.glyphicon-magnet                 { &:before { content: "\e112"; } }
info@53
   152
.glyphicon-chevron-up             { &:before { content: "\e113"; } }
info@53
   153
.glyphicon-chevron-down           { &:before { content: "\e114"; } }
info@53
   154
.glyphicon-retweet                { &:before { content: "\e115"; } }
info@53
   155
.glyphicon-shopping-cart          { &:before { content: "\e116"; } }
info@53
   156
.glyphicon-folder-close           { &:before { content: "\e117"; } }
info@53
   157
.glyphicon-folder-open            { &:before { content: "\e118"; } }
info@53
   158
.glyphicon-resize-vertical        { &:before { content: "\e119"; } }
info@53
   159
.glyphicon-resize-horizontal      { &:before { content: "\e120"; } }
info@53
   160
.glyphicon-hdd                    { &:before { content: "\e121"; } }
info@53
   161
.glyphicon-bullhorn               { &:before { content: "\e122"; } }
info@53
   162
.glyphicon-bell                   { &:before { content: "\e123"; } }
info@53
   163
.glyphicon-certificate            { &:before { content: "\e124"; } }
info@53
   164
.glyphicon-thumbs-up              { &:before { content: "\e125"; } }
info@53
   165
.glyphicon-thumbs-down            { &:before { content: "\e126"; } }
info@53
   166
.glyphicon-hand-right             { &:before { content: "\e127"; } }
info@53
   167
.glyphicon-hand-left              { &:before { content: "\e128"; } }
info@53
   168
.glyphicon-hand-up                { &:before { content: "\e129"; } }
info@53
   169
.glyphicon-hand-down              { &:before { content: "\e130"; } }
info@53
   170
.glyphicon-circle-arrow-right     { &:before { content: "\e131"; } }
info@53
   171
.glyphicon-circle-arrow-left      { &:before { content: "\e132"; } }
info@53
   172
.glyphicon-circle-arrow-up        { &:before { content: "\e133"; } }
info@53
   173
.glyphicon-circle-arrow-down      { &:before { content: "\e134"; } }
info@53
   174
.glyphicon-globe                  { &:before { content: "\e135"; } }
info@53
   175
.glyphicon-wrench                 { &:before { content: "\e136"; } }
info@53
   176
.glyphicon-tasks                  { &:before { content: "\e137"; } }
info@53
   177
.glyphicon-filter                 { &:before { content: "\e138"; } }
info@53
   178
.glyphicon-briefcase              { &:before { content: "\e139"; } }
info@53
   179
.glyphicon-fullscreen             { &:before { content: "\e140"; } }
info@53
   180
.glyphicon-dashboard              { &:before { content: "\e141"; } }
info@53
   181
.glyphicon-paperclip              { &:before { content: "\e142"; } }
info@53
   182
.glyphicon-heart-empty            { &:before { content: "\e143"; } }
info@53
   183
.glyphicon-link                   { &:before { content: "\e144"; } }
info@53
   184
.glyphicon-phone                  { &:before { content: "\e145"; } }
info@53
   185
.glyphicon-pushpin                { &:before { content: "\e146"; } }
info@53
   186
.glyphicon-usd                    { &:before { content: "\e148"; } }
info@53
   187
.glyphicon-gbp                    { &:before { content: "\e149"; } }
info@53
   188
.glyphicon-sort                   { &:before { content: "\e150"; } }
info@53
   189
.glyphicon-sort-by-alphabet       { &:before { content: "\e151"; } }
info@53
   190
.glyphicon-sort-by-alphabet-alt   { &:before { content: "\e152"; } }
info@53
   191
.glyphicon-sort-by-order          { &:before { content: "\e153"; } }
info@53
   192
.glyphicon-sort-by-order-alt      { &:before { content: "\e154"; } }
info@53
   193
.glyphicon-sort-by-attributes     { &:before { content: "\e155"; } }
info@53
   194
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
info@53
   195
.glyphicon-unchecked              { &:before { content: "\e157"; } }
info@53
   196
.glyphicon-expand                 { &:before { content: "\e158"; } }
info@53
   197
.glyphicon-collapse-down          { &:before { content: "\e159"; } }
info@53
   198
.glyphicon-collapse-up            { &:before { content: "\e160"; } }
info@53
   199
.glyphicon-log-in                 { &:before { content: "\e161"; } }
info@53
   200
.glyphicon-flash                  { &:before { content: "\e162"; } }
info@53
   201
.glyphicon-log-out                { &:before { content: "\e163"; } }
info@53
   202
.glyphicon-new-window             { &:before { content: "\e164"; } }
info@53
   203
.glyphicon-record                 { &:before { content: "\e165"; } }
info@53
   204
.glyphicon-save                   { &:before { content: "\e166"; } }
info@53
   205
.glyphicon-open                   { &:before { content: "\e167"; } }
info@53
   206
.glyphicon-saved                  { &:before { content: "\e168"; } }
info@53
   207
.glyphicon-import                 { &:before { content: "\e169"; } }
info@53
   208
.glyphicon-export                 { &:before { content: "\e170"; } }
info@53
   209
.glyphicon-send                   { &:before { content: "\e171"; } }
info@53
   210
.glyphicon-floppy-disk            { &:before { content: "\e172"; } }
info@53
   211
.glyphicon-floppy-saved           { &:before { content: "\e173"; } }
info@53
   212
.glyphicon-floppy-remove          { &:before { content: "\e174"; } }
info@53
   213
.glyphicon-floppy-save            { &:before { content: "\e175"; } }
info@53
   214
.glyphicon-floppy-open            { &:before { content: "\e176"; } }
info@53
   215
.glyphicon-credit-card            { &:before { content: "\e177"; } }
info@53
   216
.glyphicon-transfer               { &:before { content: "\e178"; } }
info@53
   217
.glyphicon-cutlery                { &:before { content: "\e179"; } }
info@53
   218
.glyphicon-header                 { &:before { content: "\e180"; } }
info@53
   219
.glyphicon-compressed             { &:before { content: "\e181"; } }
info@53
   220
.glyphicon-earphone               { &:before { content: "\e182"; } }
info@53
   221
.glyphicon-phone-alt              { &:before { content: "\e183"; } }
info@53
   222
.glyphicon-tower                  { &:before { content: "\e184"; } }
info@53
   223
.glyphicon-stats                  { &:before { content: "\e185"; } }
info@53
   224
.glyphicon-sd-video               { &:before { content: "\e186"; } }
info@53
   225
.glyphicon-hd-video               { &:before { content: "\e187"; } }
info@53
   226
.glyphicon-subtitles              { &:before { content: "\e188"; } }
info@53
   227
.glyphicon-sound-stereo           { &:before { content: "\e189"; } }
info@53
   228
.glyphicon-sound-dolby            { &:before { content: "\e190"; } }
info@53
   229
.glyphicon-sound-5-1              { &:before { content: "\e191"; } }
info@53
   230
.glyphicon-sound-6-1              { &:before { content: "\e192"; } }
info@53
   231
.glyphicon-sound-7-1              { &:before { content: "\e193"; } }
info@53
   232
.glyphicon-copyright-mark         { &:before { content: "\e194"; } }
info@53
   233
.glyphicon-registration-mark      { &:before { content: "\e195"; } }
info@53
   234
.glyphicon-cloud-download         { &:before { content: "\e197"; } }
info@53
   235
.glyphicon-cloud-upload           { &:before { content: "\e198"; } }
info@53
   236
.glyphicon-tree-conifer           { &:before { content: "\e199"; } }
info@53
   237
.glyphicon-tree-deciduous         { &:before { content: "\e200"; } }
Impressum Datenschutzerklärung