aboutsummaryrefslogtreecommitdiff
path: root/less/sprites.less
blob: 6e1f1ba9c34625de183937a4be4bb2b1b30270a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// SPRITES
// Glyphs and icons for buttons, nav, and more
// -------------------------------------------


// ICONS
// -----

// All icons receive the styles of the <i> tag with a base class 
// of .i and are then given a unique class to add width, height, 
// and background-position. Your resulting HTML will look like
// <i class="i i-inbox"></i>.

// For the white version of the  icons, just add the .i-white class:
// <i class="i i-inbox i-white"></i>

[class*="i-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: text-top;
  background-image: url(../img/glyphicons-halflings.png);
  background-position: 14px 14px;
  background-repeat: no-repeat;

  .ie7-restore-right-whitespace();
}
.i-white {
  background-image: url(../img/glyphicons-halflings-white.png);
}

.i-glass              { background-position: 0      0; }
.i-music              { background-position: -24px  0; }
.i-search             { background-position: -48px  0; }
.i-envelope           { background-position: -72px  0; }
.i-heart              { background-position: -96px  0; }
.i-star               { background-position: -120px 0; }
.i-star-empty         { background-position: -144px 0; }
.i-user               { background-position: -168px 0; }
.i-film               { background-position: -192px 0; }
.i-th-large           { background-position: -216px 0; }
.i-th                 { background-position: -240px 0; }
.i-th-list            { background-position: -264px 0; }
.i-ok                 { background-position: -288px 0; }
.i-remove             { background-position: -312px 0; }
.i-zoom-in            { background-position: -336px 0; }
.i-zoom-out           { background-position: -360px 0; }
.i-off                { background-position: -384px 0; }
.i-signal             { background-position: -408px 0; }
.i-cog                { background-position: -432px 0; }
.i-trash              { background-position: -456px 0; }

.i-home               { background-position: 0      -24px; }
.i-file               { background-position: -24px  -24px; }
.i-time               { background-position: -48px  -24px; }
.i-road               { background-position: -72px  -24px; }
.i-download-alt       { background-position: -96px  -24px; }
.i-download           { background-position: -120px -24px; }
.i-upload             { background-position: -144px -24px; }
.i-inbox              { background-position: -168px -24px; }
.i-play-circle        { background-position: -192px -24px; }
.i-repeat             { background-position: -216px -24px; }
.i-refresh            { background-position: -240px -24px; }
.i-list-alt           { background-position: -264px -24px; }
.i-lock               { background-position: -287px -24px; } // 1px off
.i-flag               { background-position: -312px -24px; }
.i-headphones         { background-position: -336px -24px; }
.i-volume-off         { background-position: -360px -24px; }
.i-volume-down        { background-position: -384px -24px; }
.i-volume-up          { background-position: -408px -24px; }
.i-qrcode             { background-position: -432px -24px; }
.i-barcode            { background-position: -456px -24px; }

.i-tag                { background-position: 0      -48px; }
.i-tags               { background-position: -25px  -48px; } // 1px off
.i-book               { background-position: -48px  -48px; }
.i-bookmark           { background-position: -72px  -48px; }
.i-print              { background-position: -96px  -48px; }
.i-camera             { background-position: -120px -48px; }
.i-font               { background-position: -144px -48px; }
.i-bold               { background-position: -167px -48px; } // 1px off
.i-italic             { background-position: -192px -48px; }
.i-text-height        { background-position: -216px -48px; }
.i-text-width         { background-position: -240px -48px; }
.i-align-left         { background-position: -264px -48px; }
.i-align-center       { background-position: -288px -48px; }
.i-align-right        { background-position: -312px -48px; }
.i-align-justify      { background-position: -336px -48px; }
.i-list               { background-position: -360px -48px; }
.i-indent-left        { background-position: -384px -48px; }
.i-indent-right       { background-position: -408px -48px; }
.i-facetime-video     { background-position: -432px -48px; }
.i-picture            { background-position: -456px -48px; }

.i-pencil             { background-position: 0      -72px; }
.i-map-marker         { background-position: -24px  -72px; }
.i-adjust             { background-position: -48px  -72px; }
.i-tint               { background-position: -72px  -72px; }
.i-edit               { background-position: -96px  -72px; }
.i-share              { background-position: -120px -72px; }
.i-check              { background-position: -144px -72px; }
.i-move               { background-position: -168px -72px; }
.i-step-backward      { background-position: -192px -72px; }
.i-fast-backward      { background-position: -216px -72px; }
.i-backward           { background-position: -240px -72px; }
.i-play               { background-position: -264px -72px; }
.i-pause              { background-position: -288px -72px; }
.i-stop               { background-position: -312px -72px; }
.i-forward            { background-position: -336px -72px; }
.i-fast-forward       { background-position: -360px -72px; }
.i-step-forward       { background-position: -384px -72px; }
.i-eject              { background-position: -408px -72px; }
.i-chevron-left       { background-position: -432px -72px; }
.i-chevron-right      { background-position: -456px -72px; }

.i-plus-sign          { background-position: 0      -96px; }
.i-minus-sign         { background-position: -24px  -96px; }
.i-remove-sign        { background-position: -48px  -96px; }
.i-ok-sign            { background-position: -72px  -96px; }
.i-question-sign      { background-position: -96px  -96px; }
.i-info-sign          { background-position: -120px -96px; }
.i-screenshot         { background-position: -144px -96px; }
.i-remove-circle      { background-position: -168px -96px; }
.i-ok-circle          { background-position: -192px -96px; }
.i-ban-circle         { background-position: -216px -96px; }
.i-arrow-left         { background-position: -240px -96px; }
.i-arrow-right        { background-position: -264px -96px; }
.i-arrow-up           { background-position: -289px -96px; } // 1px off
.i-arrow-down         { background-position: -312px -96px; }
.i-share-alt          { background-position: -336px -96px; }
.i-resize-full        { background-position: -360px -96px; }
.i-resize-small       { background-position: -384px -96px; }
.i-plus               { background-position: -408px -96px; }
.i-minus              { background-position: -433px -96px; }
.i-asterisk           { background-position: -456px -96px; }

.i-exclamation-sign   { background-position: 0      -120px; }
.i-gift               { background-position: -24px  -120px; }
.i-leaf               { background-position: -48px  -120px; }
.i-fire               { background-position: -72px  -120px; }
.i-eye-open           { background-position: -96px  -120px; }
.i-eye-close          { background-position: -120px -120px; }
.i-warning-sign       { background-position: -144px -120px; }
.i-plane              { background-position: -168px -120px; }
.i-calendar           { background-position: -192px -120px; }
.i-random             { background-position: -216px -120px; }
.i-comment            { background-position: -240px -120px; }
.i-magnet             { background-position: -264px -120px; }
.i-chevron-up         { background-position: -288px -120px; }
.i-chevron-down       { background-position: -313px -119px; } // 1px off
.i-retweet            { background-position: -336px -120px; }
.i-shopping-cart      { background-position: -360px -120px; }
.i-folder-close       { background-position: -384px -120px; }
.i-folder-open        { background-position: -408px -120px; }
.i-resize-vertical    { background-position: -432px -119px; }
.i-resize-horizontal  { background-position: -456px -118px; }