sul_styles 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/.fontcustom-manifest.json +46 -2
  3. data/Capfile +9 -0
  4. data/README.md +30 -3
  5. data/Rakefile +18 -1
  6. data/app/assets/fonts/sul-icons.eot +0 -0
  7. data/app/assets/fonts/sul-icons.svg +117 -35
  8. data/app/assets/fonts/sul-icons.ttf +0 -0
  9. data/app/assets/fonts/sul-icons.woff +0 -0
  10. data/app/assets/stylesheets/_sul-icons-rails.scss +22 -0
  11. data/app/assets/stylesheets/_sul-icons.scss +33 -0
  12. data/app/assets/stylesheets/styleguide/styleguide.scss +4 -1
  13. data/app/assets/stylesheets/sul-icons/_helpers.scss +15 -0
  14. data/app/assets/stylesheets/sul-icons/build.scss +2 -0
  15. data/app/assets/stylesheets/sul-styles.scss +0 -2
  16. data/app/controllers/sul_styles/style_guide_controller.rb +1 -13
  17. data/app/views/layouts/styleguide.html.erb +2 -2
  18. data/app/views/sul_styles/style_guide/colors.html.erb +5 -5
  19. data/app/views/sul_styles/style_guide/icons.html.erb +1 -1
  20. data/config/deploy/development.rb +6 -0
  21. data/config/deploy/production.rb +6 -0
  22. data/config/deploy/staging.rb +6 -0
  23. data/config/deploy.rb +21 -0
  24. data/dist/0.3.0/sul-icons.css +222 -0
  25. data/dist/0.3.0/sul-icons.eot +0 -0
  26. data/dist/0.3.0/sul-icons.min.css +1 -0
  27. data/dist/0.3.0/sul-icons.svg +321 -0
  28. data/dist/0.3.0/sul-icons.ttf +0 -0
  29. data/dist/0.3.0/sul-icons.woff +0 -0
  30. data/docs/styleguide/sul-icons-preview.html +168 -3
  31. data/lib/capistrano/tasks/deploy.rake +9 -0
  32. data/lib/sul_styles/colors.rb +76 -0
  33. data/lib/sul_styles/version.rb +1 -1
  34. data/lib/sul_styles.rb +1 -0
  35. data/lib/tasks/find_colors.rake +16 -0
  36. data/sul_styles.gemspec +2 -0
  37. metadata +46 -2
@@ -23,10 +23,12 @@
23
23
  [data-icon]:before { content: attr(data-icon); }
24
24
 
25
25
  [data-icon]:before,
26
+ .sul-i-arrow-down-8:before,
26
27
  .sul-i-arrow-left-3:before,
27
28
  .sul-i-arrow-left-8:before,
28
29
  .sul-i-arrow-right-3:before,
29
30
  .sul-i-arrow-right-8:before,
31
+ .sul-i-arrow-up-8:before,
30
32
  .sul-i-book-open-4:before,
31
33
  .sul-i-bookmark-all-1:before,
32
34
  .sul-i-books-library:before,
@@ -38,7 +40,16 @@
38
40
  .sul-i-download-3:before,
39
41
  .sul-i-email:before,
40
42
  .sul-i-expand-1:before,
43
+ .sul-i-file-acrobat:before,
44
+ .sul-i-file-code-1:before,
45
+ .sul-i-file-excel:before,
41
46
  .sul-i-file-music-1:before,
47
+ .sul-i-file-picture:before,
48
+ .sul-i-file-powerpoint:before,
49
+ .sul-i-file-text-document:before,
50
+ .sul-i-file-video-3:before,
51
+ .sul-i-file-words:before,
52
+ .sul-i-file-zipped:before,
42
53
  .sul-i-graph-bar-2:before,
43
54
  .sul-i-infomation-circle:before,
44
55
  .sul-i-key-2:before,
@@ -86,10 +97,12 @@
86
97
  font-smoothing: antialiased;
87
98
  }
88
99
 
100
+ .sul-i-arrow-down-8:before { content: "\f13e"; }
89
101
  .sul-i-arrow-left-3:before { content: "\f108"; }
90
102
  .sul-i-arrow-left-8:before { content: "\f109"; }
91
103
  .sul-i-arrow-right-3:before { content: "\f10a"; }
92
104
  .sul-i-arrow-right-8:before { content: "\f10b"; }
105
+ .sul-i-arrow-up-8:before { content: "\f13f"; }
93
106
  .sul-i-book-open-4:before { content: "\f10c"; }
94
107
  .sul-i-bookmark-all-1:before { content: "\f10d"; }
95
108
  .sul-i-books-library:before { content: "\f10e"; }
@@ -101,7 +114,16 @@
101
114
  .sul-i-download-3:before { content: "\f106"; }
102
115
  .sul-i-email:before { content: "\f114"; }
103
116
  .sul-i-expand-1:before { content: "\f115"; }
117
+ .sul-i-file-acrobat:before { content: "\f13a"; }
118
+ .sul-i-file-code-1:before { content: "\f137"; }
119
+ .sul-i-file-excel:before { content: "\f13b"; }
104
120
  .sul-i-file-music-1:before { content: "\f116"; }
121
+ .sul-i-file-picture:before { content: "\f136"; }
122
+ .sul-i-file-powerpoint:before { content: "\f13d"; }
123
+ .sul-i-file-text-document:before { content: "\f139"; }
124
+ .sul-i-file-video-3:before { content: "\f138"; }
125
+ .sul-i-file-words:before { content: "\f13c"; }
126
+ .sul-i-file-zipped:before { content: "\f134"; }
105
127
  .sul-i-graph-bar-2:before { content: "\f117"; }
106
128
  .sul-i-infomation-circle:before { content: "\f104"; }
107
129
  .sul-i-key-2:before { content: "\f118"; }
@@ -136,10 +158,12 @@
136
158
  .sul-i-window-search:before { content: "\f132"; }
137
159
  .sul-i-zoom-in:before { content: "\f133"; }
138
160
 
161
+ $font-sul-icons-arrow-down-8: "\f13e";
139
162
  $font-sul-icons-arrow-left-3: "\f108";
140
163
  $font-sul-icons-arrow-left-8: "\f109";
141
164
  $font-sul-icons-arrow-right-3: "\f10a";
142
165
  $font-sul-icons-arrow-right-8: "\f10b";
166
+ $font-sul-icons-arrow-up-8: "\f13f";
143
167
  $font-sul-icons-book-open-4: "\f10c";
144
168
  $font-sul-icons-bookmark-all-1: "\f10d";
145
169
  $font-sul-icons-books-library: "\f10e";
@@ -151,7 +175,16 @@ $font-sul-icons-cube: "\f113";
151
175
  $font-sul-icons-download-3: "\f106";
152
176
  $font-sul-icons-email: "\f114";
153
177
  $font-sul-icons-expand-1: "\f115";
178
+ $font-sul-icons-file-acrobat: "\f13a";
179
+ $font-sul-icons-file-code-1: "\f137";
180
+ $font-sul-icons-file-excel: "\f13b";
154
181
  $font-sul-icons-file-music-1: "\f116";
182
+ $font-sul-icons-file-picture: "\f136";
183
+ $font-sul-icons-file-powerpoint: "\f13d";
184
+ $font-sul-icons-file-text-document: "\f139";
185
+ $font-sul-icons-file-video-3: "\f138";
186
+ $font-sul-icons-file-words: "\f13c";
187
+ $font-sul-icons-file-zipped: "\f134";
155
188
  $font-sul-icons-graph-bar-2: "\f117";
156
189
  $font-sul-icons-infomation-circle: "\f104";
157
190
  $font-sul-icons-key-2: "\f118";
@@ -3,6 +3,10 @@
3
3
  */
4
4
  @import '../sul-styles';
5
5
 
6
+ @import '../sul-icons-rails';
7
+ @import '../sul-icons-aliases';
8
+ @import '../sul-icons/helpers';
9
+
6
10
  @mixin flexcontainer {
7
11
  display: flex;
8
12
  flex-flow: row wrap;
@@ -48,5 +52,4 @@ body {
48
52
 
49
53
  .icon-example {
50
54
  color: $color-black-80;
51
- font-size: 40px;
52
55
  }
@@ -0,0 +1,15 @@
1
+ // Helper classes to be used alongside sul-icons
2
+
3
+ // Icon Sizes
4
+ // -------------------------
5
+
6
+ /* makes the font 33% larger relative to the icon container */
7
+ .sul-i-lg {
8
+ font-size: (4em / 3);
9
+ line-height: (3em / 4);
10
+ vertical-align: -15%;
11
+ }
12
+ .sul-i-2x { font-size: 2em; }
13
+ .sul-i-3x { font-size: 3em; }
14
+ .sul-i-4x { font-size: 4em; }
15
+ .sul-i-5x { font-size: 5em; }
@@ -0,0 +1,2 @@
1
+ @import 'helpers';
2
+ @import '../sul-icons';
@@ -1,5 +1,3 @@
1
1
 
2
2
  @import 'sul-styles/su_web_colors';
3
3
  @import 'sul-styles/su_primary_colors';
4
- @import 'sul-icons-rails';
5
- @import 'sul-icons-aliases';
@@ -13,19 +13,7 @@ module SulStyles
13
13
  end
14
14
 
15
15
  def colors
16
- @colors = []
17
- @colors << parse_colors("#{SulStyles::Engine.root}/app/assets/stylesheet"\
18
- 's/sul-styles/su_primary_colors.scss')
19
- @colors << parse_colors("#{SulStyles::Engine.root}/app/assets/stylesheet"\
20
- 's/sul-styles/su_web_colors.scss')
21
- end
22
-
23
- def parse_colors(file_name)
24
- file = File.read(file_name)
25
- {
26
- title: file.match(/(?<=\/\*\n)(.*)(?=\*\/)/m).to_s,
27
- colors: file.scan(/^\$.*;$/).map { |c| c.split(':') }
28
- }
16
+ @colors = SULStyles::Colors.new.all
29
17
  end
30
18
 
31
19
  def parse_icons(file_name)
@@ -9,10 +9,10 @@
9
9
  <div class='navigation'>
10
10
  <ul>
11
11
  <li>
12
- <%= link_to 'Colors', 'colors' %>
12
+ <%= link_to 'Colors', colors_path %>
13
13
  </li>
14
14
  <li>
15
- <%= link_to 'Icons', 'icons' %>
15
+ <%= link_to 'Icons', icons_path %>
16
16
  </li>
17
17
  </ul>
18
18
  </div>
@@ -1,16 +1,16 @@
1
1
  <h2>Colors</h2>
2
2
  <% @colors.each do |color_group| %>
3
- <h3><%= color_group[:title] %></h3>
3
+ <h3><%= color_group.title %></h3>
4
4
  <div class='color-sample-container'>
5
- <% color_group[:colors].each do |color| %>
5
+ <% color_group.colors.each do |color| %>
6
6
  <div class='color-sample'>
7
- <div class='color-swatch' style='background-color: <%= color[1] %>'>
7
+ <div class='color-swatch' style='background-color: <%= color.value %>'>
8
8
  </div>
9
9
  <div class='color-variable-name'>
10
- <%= color[0] %>
10
+ <%= color.variable %>
11
11
  </div>
12
12
  <div class='color-name'>
13
- <%= color[1] %>
13
+ <%= color.value %>;
14
14
  </div>
15
15
  </div>
16
16
  <% end %>
@@ -4,7 +4,7 @@ Icons are created using the Streamline icon sets. For maintainability, icons kee
4
4
  <div class='icon-container'>
5
5
  <% icon_group[:icons].each do |icon| %>
6
6
  <div class='icon-example-container'>
7
- <%= content_tag(:div, '', class: "#{icon[0]} icon-example") %>
7
+ <%= content_tag(:div, '', class: "#{icon[0]} icon-example sul-i-2x") %>
8
8
  <div class='icon-example-name'>
9
9
  <%= icon[0] %>
10
10
  </div>
@@ -0,0 +1,6 @@
1
+ set :deploy_host, ask('Server', 'e.g. server.stanford.edu')
2
+
3
+ server fetch(:deploy_host), user: fetch(:user), roles: %w{web db app}
4
+
5
+ Capistrano::OneTimeKey.generate_one_time_key!
6
+ set :rails_env, 'development'
@@ -0,0 +1,6 @@
1
+ set :deploy_host, ask('Server', 'e.g. server.stanford.edu')
2
+
3
+ server fetch(:deploy_host), user: fetch(:user), roles: %w{web db app}
4
+
5
+ Capistrano::OneTimeKey.generate_one_time_key!
6
+ set :rails_env, 'development'
@@ -0,0 +1,6 @@
1
+ set :deploy_host, ask('Server', 'e.g. server.stanford.edu')
2
+
3
+ server fetch(:deploy_host), user: fetch(:user), roles: %w{web db app}
4
+
5
+ Capistrano::OneTimeKey.generate_one_time_key!
6
+ set :rails_env, 'development'
data/config/deploy.rb ADDED
@@ -0,0 +1,21 @@
1
+ # config valid only for current version of Capistrano
2
+ lock '3.4.0'
3
+
4
+ set :application, 'sul_styles'
5
+
6
+ # Default branch is :master
7
+ # ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
8
+ ask :user, proc { `whoami`.chomp }.call
9
+ set :home_directory, "/opt/app/#{fetch(:user)}"
10
+
11
+ # Default deploy_to directory is /var/www/my_app_name
12
+ set :deploy_to, "#{fetch(:home_directory)}/#{fetch(:application)}"
13
+
14
+ # Default value for :scm is :git
15
+ # set :scm, :git
16
+
17
+ # Default value for :format is :pretty
18
+ # set :format, :pretty
19
+
20
+ # Default value for :log_level is :debug
21
+ set :log_level, :info
@@ -0,0 +1,222 @@
1
+ @font-face {
2
+ font-family: "sul-icons";
3
+ src: url("sul-icons.eot");
4
+ src: url("sul-icons.eot?#iefix") format("embedded-opentype"), url("sul-icons.woff") format("woff"), url("sul-icons.ttf") format("truetype"), url("sul-icons.svg#sul-icons") format("svg");
5
+ font-weight: normal;
6
+ font-style: normal; }
7
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
8
+ @font-face {
9
+ font-family: "sul-icons";
10
+ src: url("sul-icons.svg#sul-icons") format("svg"); } }
11
+ [data-icon]:before {
12
+ content: attr(data-icon); }
13
+
14
+ [data-icon]:before,
15
+ .sul-i-arrow-left-3:before,
16
+ .sul-i-arrow-left-8:before,
17
+ .sul-i-arrow-right-3:before,
18
+ .sul-i-arrow-right-8:before,
19
+ .sul-i-book-open-4:before,
20
+ .sul-i-bookmark-all-1:before,
21
+ .sul-i-books-library:before,
22
+ .sul-i-box-1:before,
23
+ .sul-i-bubble-chat-2:before,
24
+ .sul-i-camera-film-1:before,
25
+ .sul-i-check-box-1:before,
26
+ .sul-i-cube:before,
27
+ .sul-i-download-3:before,
28
+ .sul-i-email:before,
29
+ .sul-i-expand-1:before,
30
+ .sul-i-file-music-1:before,
31
+ .sul-i-graph-bar-2:before,
32
+ .sul-i-infomation-circle:before,
33
+ .sul-i-key-2:before,
34
+ .sul-i-layout-4:before,
35
+ .sul-i-layout-none:before,
36
+ .sul-i-link-3:before,
37
+ .sul-i-list-bullets-1:before,
38
+ .sul-i-map-pin-1:before,
39
+ .sul-i-microphone-3:before,
40
+ .sul-i-mobile-phone-2:before,
41
+ .sul-i-mouse:before,
42
+ .sul-i-navigation-drawer-1:before,
43
+ .sul-i-navigation-drawer-2:before,
44
+ .sul-i-navigation-left-2:before,
45
+ .sul-i-network-web:before,
46
+ .sul-i-news-article:before,
47
+ .sul-i-newspaper:before,
48
+ .sul-i-notebook:before,
49
+ .sul-i-person-1:before,
50
+ .sul-i-person-information-1:before,
51
+ .sul-i-picture-2:before,
52
+ .sul-i-plug-1:before,
53
+ .sul-i-print-text:before,
54
+ .sul-i-quote-1:before,
55
+ .sul-i-search:before,
56
+ .sul-i-share:before,
57
+ .sul-i-transfer-3:before,
58
+ .sul-i-turntable:before,
59
+ .sul-i-view-headline:before,
60
+ .sul-i-view-list:before,
61
+ .sul-i-view-module-1:before,
62
+ .sul-i-window-search:before,
63
+ .sul-i-zoom-in:before {
64
+ display: inline-block;
65
+ font-family: "sul-icons";
66
+ font-style: normal;
67
+ font-weight: normal;
68
+ font-variant: normal;
69
+ line-height: 1;
70
+ text-decoration: inherit;
71
+ text-rendering: optimizeLegibility;
72
+ text-transform: none;
73
+ -moz-osx-font-smoothing: grayscale;
74
+ -webkit-font-smoothing: antialiased;
75
+ font-smoothing: antialiased; }
76
+
77
+ .sul-i-arrow-left-3:before {
78
+ content: "\f108"; }
79
+
80
+ .sul-i-arrow-left-8:before {
81
+ content: "\f109"; }
82
+
83
+ .sul-i-arrow-right-3:before {
84
+ content: "\f10a"; }
85
+
86
+ .sul-i-arrow-right-8:before {
87
+ content: "\f10b"; }
88
+
89
+ .sul-i-book-open-4:before {
90
+ content: "\f10c"; }
91
+
92
+ .sul-i-bookmark-all-1:before {
93
+ content: "\f10d"; }
94
+
95
+ .sul-i-books-library:before {
96
+ content: "\f10e"; }
97
+
98
+ .sul-i-box-1:before {
99
+ content: "\f10f"; }
100
+
101
+ .sul-i-bubble-chat-2:before {
102
+ content: "\f110"; }
103
+
104
+ .sul-i-camera-film-1:before {
105
+ content: "\f111"; }
106
+
107
+ .sul-i-check-box-1:before {
108
+ content: "\f112"; }
109
+
110
+ .sul-i-cube:before {
111
+ content: "\f113"; }
112
+
113
+ .sul-i-download-3:before {
114
+ content: "\f106"; }
115
+
116
+ .sul-i-email:before {
117
+ content: "\f114"; }
118
+
119
+ .sul-i-expand-1:before {
120
+ content: "\f115"; }
121
+
122
+ .sul-i-file-music-1:before {
123
+ content: "\f116"; }
124
+
125
+ .sul-i-graph-bar-2:before {
126
+ content: "\f117"; }
127
+
128
+ .sul-i-infomation-circle:before {
129
+ content: "\f104"; }
130
+
131
+ .sul-i-key-2:before {
132
+ content: "\f118"; }
133
+
134
+ .sul-i-layout-4:before {
135
+ content: "\f119"; }
136
+
137
+ .sul-i-layout-none:before {
138
+ content: "\f11a"; }
139
+
140
+ .sul-i-link-3:before {
141
+ content: "\f107"; }
142
+
143
+ .sul-i-list-bullets-1:before {
144
+ content: "\f11b"; }
145
+
146
+ .sul-i-map-pin-1:before {
147
+ content: "\f11c"; }
148
+
149
+ .sul-i-microphone-3:before {
150
+ content: "\f11d"; }
151
+
152
+ .sul-i-mobile-phone-2:before {
153
+ content: "\f11e"; }
154
+
155
+ .sul-i-mouse:before {
156
+ content: "\f11f"; }
157
+
158
+ .sul-i-navigation-drawer-1:before {
159
+ content: "\f120"; }
160
+
161
+ .sul-i-navigation-drawer-2:before {
162
+ content: "\f121"; }
163
+
164
+ .sul-i-navigation-left-2:before {
165
+ content: "\f122"; }
166
+
167
+ .sul-i-network-web:before {
168
+ content: "\f123"; }
169
+
170
+ .sul-i-news-article:before {
171
+ content: "\f124"; }
172
+
173
+ .sul-i-newspaper:before {
174
+ content: "\f125"; }
175
+
176
+ .sul-i-notebook:before {
177
+ content: "\f126"; }
178
+
179
+ .sul-i-person-1:before {
180
+ content: "\f127"; }
181
+
182
+ .sul-i-person-information-1:before {
183
+ content: "\f128"; }
184
+
185
+ .sul-i-picture-2:before {
186
+ content: "\f129"; }
187
+
188
+ .sul-i-plug-1:before {
189
+ content: "\f12a"; }
190
+
191
+ .sul-i-print-text:before {
192
+ content: "\f12b"; }
193
+
194
+ .sul-i-quote-1:before {
195
+ content: "\f12c"; }
196
+
197
+ .sul-i-search:before {
198
+ content: "\f12d"; }
199
+
200
+ .sul-i-share:before {
201
+ content: "\f105"; }
202
+
203
+ .sul-i-transfer-3:before {
204
+ content: "\f12e"; }
205
+
206
+ .sul-i-turntable:before {
207
+ content: "\f12f"; }
208
+
209
+ .sul-i-view-headline:before {
210
+ content: "\f130"; }
211
+
212
+ .sul-i-view-list:before {
213
+ content: "\f131"; }
214
+
215
+ .sul-i-view-module-1:before {
216
+ content: "\f102"; }
217
+
218
+ .sul-i-window-search:before {
219
+ content: "\f132"; }
220
+
221
+ .sul-i-zoom-in:before {
222
+ content: "\f133"; }
Binary file
@@ -0,0 +1 @@
1
+ @font-face{font-family:"sul-icons";src:url("sul-icons.eot");src:url("sul-icons.eot?#iefix") format("embedded-opentype"),url("sul-icons.woff") format("woff"),url("sul-icons.ttf") format("truetype"),url("sul-icons.svg#sul-icons") format("svg");font-weight:normal;font-style:normal}@media screen and (-webkit-min-device-pixel-ratio: 0){@font-face{font-family:"sul-icons";src:url("sul-icons.svg#sul-icons") format("svg")}}[data-icon]:before{content:attr(data-icon)}[data-icon]:before,.sul-i-arrow-left-3:before,.sul-i-arrow-left-8:before,.sul-i-arrow-right-3:before,.sul-i-arrow-right-8:before,.sul-i-book-open-4:before,.sul-i-bookmark-all-1:before,.sul-i-books-library:before,.sul-i-box-1:before,.sul-i-bubble-chat-2:before,.sul-i-camera-film-1:before,.sul-i-check-box-1:before,.sul-i-cube:before,.sul-i-download-3:before,.sul-i-email:before,.sul-i-expand-1:before,.sul-i-file-music-1:before,.sul-i-graph-bar-2:before,.sul-i-infomation-circle:before,.sul-i-key-2:before,.sul-i-layout-4:before,.sul-i-layout-none:before,.sul-i-link-3:before,.sul-i-list-bullets-1:before,.sul-i-map-pin-1:before,.sul-i-microphone-3:before,.sul-i-mobile-phone-2:before,.sul-i-mouse:before,.sul-i-navigation-drawer-1:before,.sul-i-navigation-drawer-2:before,.sul-i-navigation-left-2:before,.sul-i-network-web:before,.sul-i-news-article:before,.sul-i-newspaper:before,.sul-i-notebook:before,.sul-i-person-1:before,.sul-i-person-information-1:before,.sul-i-picture-2:before,.sul-i-plug-1:before,.sul-i-print-text:before,.sul-i-quote-1:before,.sul-i-search:before,.sul-i-share:before,.sul-i-transfer-3:before,.sul-i-turntable:before,.sul-i-view-headline:before,.sul-i-view-list:before,.sul-i-view-module-1:before,.sul-i-window-search:before,.sul-i-zoom-in:before{display:inline-block;font-family:"sul-icons";font-style:normal;font-weight:normal;font-variant:normal;line-height:1;text-decoration:inherit;text-rendering:optimizeLegibility;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-smoothing:antialiased}.sul-i-arrow-left-3:before{content:"\f108"}.sul-i-arrow-left-8:before{content:"\f109"}.sul-i-arrow-right-3:before{content:"\f10a"}.sul-i-arrow-right-8:before{content:"\f10b"}.sul-i-book-open-4:before{content:"\f10c"}.sul-i-bookmark-all-1:before{content:"\f10d"}.sul-i-books-library:before{content:"\f10e"}.sul-i-box-1:before{content:"\f10f"}.sul-i-bubble-chat-2:before{content:"\f110"}.sul-i-camera-film-1:before{content:"\f111"}.sul-i-check-box-1:before{content:"\f112"}.sul-i-cube:before{content:"\f113"}.sul-i-download-3:before{content:"\f106"}.sul-i-email:before{content:"\f114"}.sul-i-expand-1:before{content:"\f115"}.sul-i-file-music-1:before{content:"\f116"}.sul-i-graph-bar-2:before{content:"\f117"}.sul-i-infomation-circle:before{content:"\f104"}.sul-i-key-2:before{content:"\f118"}.sul-i-layout-4:before{content:"\f119"}.sul-i-layout-none:before{content:"\f11a"}.sul-i-link-3:before{content:"\f107"}.sul-i-list-bullets-1:before{content:"\f11b"}.sul-i-map-pin-1:before{content:"\f11c"}.sul-i-microphone-3:before{content:"\f11d"}.sul-i-mobile-phone-2:before{content:"\f11e"}.sul-i-mouse:before{content:"\f11f"}.sul-i-navigation-drawer-1:before{content:"\f120"}.sul-i-navigation-drawer-2:before{content:"\f121"}.sul-i-navigation-left-2:before{content:"\f122"}.sul-i-network-web:before{content:"\f123"}.sul-i-news-article:before{content:"\f124"}.sul-i-newspaper:before{content:"\f125"}.sul-i-notebook:before{content:"\f126"}.sul-i-person-1:before{content:"\f127"}.sul-i-person-information-1:before{content:"\f128"}.sul-i-picture-2:before{content:"\f129"}.sul-i-plug-1:before{content:"\f12a"}.sul-i-print-text:before{content:"\f12b"}.sul-i-quote-1:before{content:"\f12c"}.sul-i-search:before{content:"\f12d"}.sul-i-share:before{content:"\f105"}.sul-i-transfer-3:before{content:"\f12e"}.sul-i-turntable:before{content:"\f12f"}.sul-i-view-headline:before{content:"\f130"}.sul-i-view-list:before{content:"\f131"}.sul-i-view-module-1:before{content:"\f102"}.sul-i-window-search:before{content:"\f132"}.sul-i-zoom-in:before{content:"\f133"}