Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jsxc-icons.scss « fonts - github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89d4e8b3b285b4a48d28d43f06d2586db08d8130 (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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
$jsxc-icons-font: "jsxc-icons";

@font-face {
    font-family: $jsxc-icons-font;
    src: url("../fonts/jsxc-icons.eot?d795960dd0062a30f89bb22c3b0df55e#iefix") format("embedded-opentype"),
url("../fonts/jsxc-icons.woff2?d795960dd0062a30f89bb22c3b0df55e") format("woff2"),
url("../fonts/jsxc-icons.woff?d795960dd0062a30f89bb22c3b0df55e") format("woff");
}

[class^="jsxc-icon-"]:before, [class*=" jsxc-icon-"]:before {
    font-family: jsxc-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

$jsxc-icons-map: (
    "attachment": "\f101",
    "bell": "\f102",
    "bookmark": "\f103",
    "camera-disabled": "\f104",
    "camera": "\f105",
    "channel": "\f106",
    "close": "\f107",
    "contact": "\f108",
    "delete": "\f109",
    "download": "\f10a",
    "dragover": "\f10b",
    "drop": "\f10c",
    "edit": "\f10d",
    "fullscreen": "\f10e",
    "gear": "\f10f",
    "group": "\f110",
    "groupcontact": "\f111",
    "hang-up": "\f112",
    "help": "\f113",
    "info": "\f114",
    "jsxc": "\f115",
    "location": "\f116",
    "maximize": "\f117",
    "megaphone": "\f118",
    "menu": "\f119",
    "microphone-disabled": "\f11a",
    "microphone": "\f11b",
    "minimize": "\f11c",
    "more": "\f11d",
    "mute": "\f11e",
    "nonanonymous-group": "\f11f",
    "padlock-close": "\f120",
    "padlock-open-disabled": "\f121",
    "padlock-open": "\f122",
    "pick-up-disabled": "\f123",
    "pick-up": "\f124",
    "placeholder": "\f125",
    "quotation": "\f126",
    "resize": "\f127",
    "search": "\f128",
    "smiley": "\f129",
    "speech-balloon": "\f12a",
);

.jsxc-icon-attachment:before {
    content: map-get($jsxc-icons-map, "attachment");
}
.jsxc-icon-bell:before {
    content: map-get($jsxc-icons-map, "bell");
}
.jsxc-icon-bookmark:before {
    content: map-get($jsxc-icons-map, "bookmark");
}
.jsxc-icon-camera-disabled:before {
    content: map-get($jsxc-icons-map, "camera-disabled");
}
.jsxc-icon-camera:before {
    content: map-get($jsxc-icons-map, "camera");
}
.jsxc-icon-channel:before {
    content: map-get($jsxc-icons-map, "channel");
}
.jsxc-icon-close:before {
    content: map-get($jsxc-icons-map, "close");
}
.jsxc-icon-contact:before {
    content: map-get($jsxc-icons-map, "contact");
}
.jsxc-icon-delete:before {
    content: map-get($jsxc-icons-map, "delete");
}
.jsxc-icon-download:before {
    content: map-get($jsxc-icons-map, "download");
}
.jsxc-icon-dragover:before {
    content: map-get($jsxc-icons-map, "dragover");
}
.jsxc-icon-drop:before {
    content: map-get($jsxc-icons-map, "drop");
}
.jsxc-icon-edit:before {
    content: map-get($jsxc-icons-map, "edit");
}
.jsxc-icon-fullscreen:before {
    content: map-get($jsxc-icons-map, "fullscreen");
}
.jsxc-icon-gear:before {
    content: map-get($jsxc-icons-map, "gear");
}
.jsxc-icon-group:before {
    content: map-get($jsxc-icons-map, "group");
}
.jsxc-icon-groupcontact:before {
    content: map-get($jsxc-icons-map, "groupcontact");
}
.jsxc-icon-hang-up:before {
    content: map-get($jsxc-icons-map, "hang-up");
}
.jsxc-icon-help:before {
    content: map-get($jsxc-icons-map, "help");
}
.jsxc-icon-info:before {
    content: map-get($jsxc-icons-map, "info");
}
.jsxc-icon-jsxc:before {
    content: map-get($jsxc-icons-map, "jsxc");
}
.jsxc-icon-location:before {
    content: map-get($jsxc-icons-map, "location");
}
.jsxc-icon-maximize:before {
    content: map-get($jsxc-icons-map, "maximize");
}
.jsxc-icon-megaphone:before {
    content: map-get($jsxc-icons-map, "megaphone");
}
.jsxc-icon-menu:before {
    content: map-get($jsxc-icons-map, "menu");
}
.jsxc-icon-microphone-disabled:before {
    content: map-get($jsxc-icons-map, "microphone-disabled");
}
.jsxc-icon-microphone:before {
    content: map-get($jsxc-icons-map, "microphone");
}
.jsxc-icon-minimize:before {
    content: map-get($jsxc-icons-map, "minimize");
}
.jsxc-icon-more:before {
    content: map-get($jsxc-icons-map, "more");
}
.jsxc-icon-mute:before {
    content: map-get($jsxc-icons-map, "mute");
}
.jsxc-icon-nonanonymous-group:before {
    content: map-get($jsxc-icons-map, "nonanonymous-group");
}
.jsxc-icon-padlock-close:before {
    content: map-get($jsxc-icons-map, "padlock-close");
}
.jsxc-icon-padlock-open-disabled:before {
    content: map-get($jsxc-icons-map, "padlock-open-disabled");
}
.jsxc-icon-padlock-open:before {
    content: map-get($jsxc-icons-map, "padlock-open");
}
.jsxc-icon-pick-up-disabled:before {
    content: map-get($jsxc-icons-map, "pick-up-disabled");
}
.jsxc-icon-pick-up:before {
    content: map-get($jsxc-icons-map, "pick-up");
}
.jsxc-icon-placeholder:before {
    content: map-get($jsxc-icons-map, "placeholder");
}
.jsxc-icon-quotation:before {
    content: map-get($jsxc-icons-map, "quotation");
}
.jsxc-icon-resize:before {
    content: map-get($jsxc-icons-map, "resize");
}
.jsxc-icon-search:before {
    content: map-get($jsxc-icons-map, "search");
}
.jsxc-icon-smiley:before {
    content: map-get($jsxc-icons-map, "smiley");
}
.jsxc-icon-speech-balloon:before {
    content: map-get($jsxc-icons-map, "speech-balloon");
}