maily 0.1.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. data/.gitignore +1 -0
  2. data/MIT-LICENSE +1 -1
  3. data/README.md +46 -7
  4. data/app/assets/images/maily/fonts/JosefinSans-Light.ttf +0 -0
  5. data/app/assets/images/maily/icons/maily.eot +0 -0
  6. data/app/assets/images/maily/icons/maily.svg +90 -0
  7. data/app/assets/images/maily/icons/maily.ttf +0 -0
  8. data/app/assets/images/maily/icons/maily.woff +0 -0
  9. data/app/assets/javascripts/maily/application.js +0 -14
  10. data/app/assets/javascripts/maily/html5shiv.js +8 -0
  11. data/app/assets/stylesheets/maily/application.scss +310 -0
  12. data/app/assets/stylesheets/maily/icons.css +199 -0
  13. data/app/assets/stylesheets/maily/normalize.css +406 -0
  14. data/app/controllers/maily/emails_controller.rb +14 -12
  15. data/app/helpers/maily/application_helper.rb +3 -0
  16. data/app/helpers/maily/emails_helper.rb +3 -0
  17. data/app/views/layouts/maily/application.html.erb +10 -4
  18. data/app/views/maily/emails/edit.html.erb +19 -10
  19. data/app/views/maily/emails/index.html.erb +2 -9
  20. data/app/views/maily/emails/show.html.erb +59 -36
  21. data/app/views/maily/shared/_footer.html.erb +3 -0
  22. data/app/views/maily/shared/_header.html.erb +3 -0
  23. data/app/views/maily/shared/_sidebar.html.erb +12 -0
  24. data/config/routes.rb +6 -6
  25. data/lib/generators/maily/install_generator.rb +9 -8
  26. data/lib/generators/templates/initializer.rb +6 -8
  27. data/lib/maily.rb +7 -1
  28. data/lib/maily/email.rb +39 -5
  29. data/lib/maily/mailer.rb +1 -1
  30. data/lib/maily/version.rb +1 -1
  31. data/maily.gemspec +2 -2
  32. data/screenshot.png +0 -0
  33. metadata +17 -6
  34. data/Gemfile.lock +0 -99
  35. data/app/assets/stylesheets/maily/application.css +0 -13
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  .bundle/
2
2
  pkg/
3
+ Gemfile.lock
@@ -1,4 +1,4 @@
1
- Copyright 2013 YOURNAME
1
+ Copyright 2013 Marc Anguera Insa
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,9 +1,21 @@
1
1
  Maily
2
2
  ==============
3
3
 
4
- **[IN PROGRESS: working, but not ready for first release]**
4
+ Stop to delivery emails every time you change it!
5
5
 
6
- Rails Engine to preview, follow up, test and edit application emails.
6
+ Maily is Rails Engine to preview, follow up, test and edit the emails of your applications in a browser. Features:
7
+
8
+ * Mountable engine
9
+ * Visual preview in the browser (attachments as well)
10
+ * Template edition
11
+ * Email delivery
12
+ * Features configurables per environment
13
+ * Customizable parent controller (define permissions in your own controller)
14
+ * Minimalistic interface (thanks to [@gnatok](https://github.com/gnatok))
15
+ * Easy way (named hooks) to define data for emails
16
+ * Generator to handle a comfortable installation
17
+
18
+ ![](screenshot.png)
7
19
 
8
20
  ## Installation
9
21
  Add this line to you Gemfile:
@@ -19,26 +31,53 @@ rails g maily:install
19
31
  ```
20
32
 
21
33
  This installator mounts the engine:
34
+
22
35
  ```
23
36
  mount Maily::Engine, at: 'maily'
24
37
  ```
25
38
 
26
- And adds an initializer to customize some settings and define hooks.
39
+ Adds an initializer to customize some settings:
40
+
41
+ ```ruby
42
+ # config/initializers/maily.rb
43
+ Maily.setup do |config|
44
+ # Enable/disable engine
45
+ # config.enabled = Rails.env.production? ? false : true
46
+
47
+ # Allow to edit templates
48
+ # config.allow_edition = Rails.env.production? ? false : true
49
+
50
+ # Allow deliveries
51
+ # config.allow_delivery = Rails.env.production? ? false : true
52
+
53
+ # Define I18n available locales
54
+ # config.available_locales = [:en, :es, :pt, :fr]
55
+
56
+ # Define parent controller. Allow to run engine under a custom controller
57
+ # config.base_controller = 'FooController'
58
+ end
59
+ ```
60
+
61
+ And adds a file to define hooks.
27
62
 
28
63
  ## Hooks
29
- Hooks are used to collect data for emails:
64
+ Most of emails need to populate data to consume it and do intersting things. Hooks are used to define this data with a little DSL. Example:
30
65
 
31
66
  ```ruby
67
+ # lib/maily_hooks.rb
32
68
  user = User.new(email: 'user@example.com')
33
- comment = Comment.new(body: 'Lorem ipsum')
69
+ comment = Struct.new(:body).new('Lorem ipsum') # stub way
34
70
  service = Service.new(price: '100USD')
35
71
 
36
72
  Maily.hooks_for('Notifier') do |mailer|
37
- mailer.register_hook(:welcome, user)
73
+ mailer.register_hook(:welcome, user, template_path: 'users')
38
74
  mailer.register_hook(:new_comment, user, comment)
39
75
  end
40
76
 
41
77
  Maily.hooks_for('PaymentNotifier') do |mailer|
42
78
  mailer.register_hook(:invoice, user, service)
43
79
  end
44
- ```
80
+ ```
81
+
82
+ ## License
83
+ Copyright (c) 2013 Marc Anguera. Maily is released under the [MIT](MIT-LICENSE) License.
@@ -0,0 +1,90 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ <json>
6
+ {
7
+ "fontFamily": "maily",
8
+ "designer": "Oleksandr Gnatyshyn",
9
+ "designerURL": "http://github.com/gnatok",
10
+ "license": "",
11
+ "fontURL": "",
12
+ "version": "Version 1.0",
13
+ "fontId": "maily",
14
+ "psName": "maily",
15
+ "subFamily": "Regular",
16
+ "fullName": "maily",
17
+ "description": "Generated by IcoMoon"
18
+ }
19
+ </json>
20
+ </metadata>
21
+ <defs>
22
+ <font id="maily" horiz-adv-x="1024">
23
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
24
+ <missing-glyph horiz-adv-x="1024" />
25
+ <glyph unicode="&#x20;" d="" horiz-adv-x="512" />
26
+ <glyph unicode="&#xe600;" d="M1024 352l-192 192v288h-128v-160l-192 192-512-512v-32h128v-320h320v192h128v-192h320v320h128z" />
27
+ <glyph unicode="&#xe601;" d="M864 960c88.364 0 160-71.634 160-160 0-36.020-11.91-69.258-32-96l-64-64-224 224 64 64c26.742 20.090 59.978 32 96 32zM64 224l-64-288 288 64 592 592-224 224-592-592zM715.578 596.422l-448-448-55.156 55.156 448 448 55.156-55.156z" />
28
+ <glyph unicode="&#xe602;" d="M128 704v-640h896v640h-896zM960 170.666l-128 213.334-145.066-120.888-110.934 184.888-384-320v512h768v-469.334zM256 480c0 53.020 42.98 96 96 96s96-42.98 96-96c0-53.020-42.98-96-96-96-53.020 0-96 42.98-96 96zM896 832h-896v-640h64v576h832z" />
29
+ <glyph unicode="&#xe603;" d="M1024 530.744c0 200.926-58.792 363.938-131.482 365.226 0.292 0.006 0.578 0.030 0.872 0.030h-82.942c0 0-194.8-146.336-475.23-203.754-8.56-45.292-14.030-99.274-14.030-161.502 0-62.228 5.466-116.208 14.030-161.5 280.428-57.418 475.23-203.756 475.23-203.756h82.942c-0.292 0-0.578 0.024-0.872 0.032 72.696 1.288 131.482 164.298 131.482 365.224zM864.824 220.748c-9.382 0-19.532 9.742-24.746 15.548-12.63 14.064-24.792 35.96-35.188 63.328-23.256 61.232-36.066 143.31-36.066 231.124 0 87.81 12.81 169.89 36.066 231.122 10.394 27.368 22.562 49.266 35.188 63.328 5.214 5.812 15.364 15.552 24.746 15.552 9.38 0 19.536-9.744 24.744-15.552 12.634-14.064 24.796-35.958 35.188-63.328 23.258-61.23 36.068-143.312 36.068-231.122 0-87.804-12.81-169.888-36.068-231.124-10.39-27.368-22.562-49.264-35.188-63.328-5.208-5.806-15.36-15.548-24.744-15.548zM251.812 530.744c0 51.95 3.81 102.43 11.052 149.094-47.372-6.554-88.942-10.324-140.34-10.324-67.058 0-67.058 0-67.058 0l-55.466-94.686v-88.17l55.46-94.686c0 0 0 0 67.060 0 51.398 0 92.968-3.774 140.34-10.324-7.236 46.664-11.048 97.146-11.048 149.096zM368.15 317.828l-127.998 24.51 81.842-321.544c4.236-16.634 20.744-25.038 36.686-18.654l118.556 47.452c15.944 6.376 22.328 23.964 14.196 39.084l-123.282 229.152zM864.824 411.27c-3.618 0-7.528 3.754-9.538 5.992-4.87 5.42-9.556 13.86-13.562 24.408-8.962 23.6-13.9 55.234-13.9 89.078 0 33.844 4.938 65.478 13.9 89.078 4.006 10.548 8.696 18.988 13.562 24.408 2.010 2.24 5.92 5.994 9.538 5.994 3.616 0 7.53-3.756 9.538-5.994 4.87-5.42 9.556-13.858 13.56-24.408 8.964-23.598 13.902-55.234 13.902-89.078 0-33.842-4.938-65.478-13.902-89.078-4.004-10.548-8.696-18.988-13.56-24.408-2.008-2.238-5.92-5.992-9.538-5.992z" />
30
+ <glyph unicode="&#xe604;" d="M903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
31
+ <glyph unicode="&#xe605;" d="M832 704h-192v64l-192 192h-448v-768h384v-256h640v576l-192 192zM832 613.49l101.49-101.49h-101.49v101.49zM448 869.49l101.49-101.49h-101.49v101.49zM64 896h320v-192h192v-448h-512v640zM960 0h-512v192h192v448h128v-192h192v-448z" />
32
+ <glyph unicode="&#xe606;" d="M1024 640l-512 256-512-256 512-256 512 256zM512 811.030l342.058-171.030-342.058-171.030-342.058 171.030 342.058 171.030zM921.444 499.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722zM921.444 307.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722z" />
33
+ <glyph unicode="&#xe607;" d="M832 0l192 512h-832l-192-512zM128 576l-128-576v832h288l128-128h416v-128z" />
34
+ <glyph unicode="&#xe608;" d="M128 32c0 53.020 42.98 96 96 96s96-42.98 96-96c0-53.020-42.98-96-96-96-53.020 0-96 42.98-96 96zM768 32c0 53.020 42.98 96 96 96s96-42.98 96-96c0-53.020-42.98-96-96-96-53.020 0-96 42.98-96 96zM960 448v384h-832c0 70.692-57.306 128-128 128v-64c35.29 0 64-28.71 64-64l48.074-412.054c-29.294-23.458-48.074-59.5-48.074-99.946 0-70.694 57.308-128 128-128h768v64h-768c-35.346 0-64 28.654-64 64 0 0.22 0.014 0.436 0.016 0.656l831.984 127.344z" />
35
+ <glyph unicode="&#xe609;" d="M928 832h-832c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96zM96 768h832c17.346 0 32-14.654 32-32v-96h-896v96c0 17.346 14.654 32 32 32zM928 128h-832c-17.346 0-32 14.654-32 32v288h896v-288c0-17.346-14.654-32-32-32zM128 320h64v-128h-64zM256 320h64v-128h-64zM384 320h64v-128h-64z" />
36
+ <glyph unicode="&#xe60a;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 448c0 106.040 85.96 192 192 192s192-85.96 192-192-85.96-192-192-192-192 85.96-192 192zM925.98 276.524v0l-177.42 73.49c12.518 30.184 19.44 63.276 19.44 97.986s-6.922 67.802-19.44 97.986l177.42 73.49c21.908-52.822 34.020-110.73 34.020-171.476s-12.114-118.654-34.020-171.476v0zM683.478 861.98v0 0l-73.49-177.42c-30.184 12.518-63.276 19.44-97.988 19.44s-67.802-6.922-97.986-19.44l-73.49 177.422c52.822 21.904 110.732 34.018 171.476 34.018 60.746 0 118.654-12.114 171.478-34.020zM98.020 619.476l177.422-73.49c-12.518-30.184-19.442-63.276-19.442-97.986s6.922-67.802 19.44-97.986l-177.42-73.49c-21.906 52.822-34.020 110.73-34.020 171.476s12.114 118.654 34.020 171.476zM340.524 34.020l73.49 177.42c30.184-12.518 63.276-19.44 97.986-19.44s67.802 6.922 97.986 19.44l73.49-177.42c-52.822-21.904-110.73-34.020-171.476-34.020-60.744 0-118.654 12.114-171.476 34.020z" />
37
+ <glyph unicode="&#xe60b;" d="M704 320c-64-64-64-128-128-128s-128 64-192 128-128 128-128 192 64 64 128 128-128 256-192 256-192-192-192-192c0-128 131.5-387.5 256-512s384-256 512-256c0 0 192 128 192 192s-192 256-256 192z" />
38
+ <glyph unicode="&#xe60c;" d="M960 704c35.346 0 64 28.654 64 64v128h-128v64h-832c-35.2 0-64-28.798-64-64v-896c0-35.2 28.796-64 64-64h832v256h64c35.346 0 64 28.654 64 64v128h-128v64h64c35.346 0 64 28.654 64 64v128h-128v64h64zM576 703.67c70.51 0 127.67-57.16 127.67-127.67s-57.16-127.67-127.67-127.67c-70.51 0-127.67 57.16-127.67 127.67s57.16 127.67 127.67 127.67zM256 0h-64v896h64v-896zM768 192h-384v64c0 70.694 57.308 128 128 128v0h128c70.696 0 128-57.306 128-128v-64z" />
39
+ <glyph unicode="&#xe60d;" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 444c-108.248 0-196 87.752-196 196s87.752 196 196 196 196-87.752 196-196-87.752-196-196-196zM388 640c0 68.482 55.516 124 124 124s124-55.518 124-124c0-68.482-55.518-124-124-124-68.484 0-124 55.518-124 124z" />
40
+ <glyph unicode="&#xe60e;" d="M1025.5 160c0 288-256 224-256 448 0 18.56-1.788 34.42-5.048 47.928-16.83 113.018-92.156 203.72-189.772 231.36 0.866 3.948 1.32 8.032 1.32 12.21 0 33.278-28.8 60.502-64 60.502-35.2 0-64-27.224-64-60.5 0-4.18 0.456-8.264 1.32-12.21-109.47-30.998-190.914-141.298-193.254-273.442-0.040-1.92-0.066-3.864-0.066-5.846 0-224.002-256-160.002-256-448.002 0-76.226 170.59-139.996 398.97-156.080 21.524-40.404 64.056-67.92 113.030-67.92s91.508 27.516 113.030 67.92c228.38 16.084 398.97 79.854 398.97 156.080 0 0.228-0.026 0.456-0.028 0.682l1.528-0.682zM826.246 105.904c-54.23-14.47-118.158-24.876-186.768-30.648-5.704 65.418-60.582 116.744-127.478 116.744s-121.774-51.326-127.478-116.744c-68.608 5.772-132.538 16.178-186.768 30.648-74.63 19.914-110.31 42.19-123.368 54.096 13.058 11.906 48.738 34.182 123.368 54.096 86.772 23.152 198.372 35.904 314.246 35.904s227.474-12.752 314.246-35.904c74.63-19.914 110.31-42.19 123.368-54.096-13.058-11.906-48.738-34.182-123.368-54.096z" />
41
+ <glyph unicode="&#xe60f;" d="M736 960h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h448c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 912h256v-32h-256v32zM512 0c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM768 192h-512v640h512v-640z" />
42
+ <glyph unicode="&#xe610;" d="M800 960h-640c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h640c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM480-32c-17.672 0-32 14.326-32 32s14.328 32 32 32 32-14.326 32-32-14.328-32-32-32zM768 64h-576v768h576v-768z" />
43
+ <glyph unicode="&#xe611;" d="M768 960h-576c-35.2 0-64-28.798-64-64v-896c0-35.2 28.798-64 64-64h576c35.2 0 64 28.8 64 64v896c0 35.202-28.8 64-64 64zM480-17.782c-27.492 0-49.782 22.29-49.782 49.782s22.29 49.782 49.782 49.782 49.782-22.29 49.782-49.782-22.29-49.782-49.782-49.782zM768 128h-576v704h576v-704z" />
44
+ <glyph unicode="&#xe612;" d="M1024 128v768h-1024v-768h448v-64h-192v-64h512v64h-192v64h448zM128 768h768v-512h-768v512z" />
45
+ <glyph unicode="&#xe613;" d="M896 256v512c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-512h-128v-192h1024v192h-128zM640 128h-256v64h256v-64zM832 256h-640v511.886c0.034 0.040 0.076 0.082 0.114 0.114h639.77c0.040-0.034 0.082-0.076 0.116-0.116v-511.884z" />
46
+ <glyph unicode="&#xe614;" d="M704 768h-384l-320-384v-256c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v256l-320 384zM768 384l-128-128h-256l-128 128h-172.69l266.666 320h324.048l266.666-320h-172.69z" />
47
+ <glyph unicode="&#xe615;" d="M704 768h-384l-320-384v-256c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v256l-320 384zM640 256h-256l-64 64h384l-64-64zM83.31 384l266.666 320h324.048l266.666-320h-857.38zM284.964 576h454.072l-53.334 64h-347.406zM178.298 448h667.406l-53.334 64h-560.74z" />
48
+ <glyph unicode="&#xe616;" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM640 320v-192h-256v192h-192l320 256 320-256h-192zM154.51 768l64 64h586.976l64-64h-714.976z" />
49
+ <glyph unicode="&#xe617;" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
50
+ <glyph unicode="&#xe618;" d="M512 896c-141.384 0-269.376-57.32-362.032-149.978l-149.968 149.978v-384h384l-143.532 143.522c69.496 69.492 165.492 112.478 271.532 112.478 212.068 0 384-171.924 384-384 0-114.696-50.292-217.636-130.018-288l84.666-96c106.302 93.816 173.352 231.076 173.352 384 0 282.77-229.23 512-512 512z" />
51
+ <glyph unicode="&#xe619;" d="M0 384c0-152.924 67.048-290.184 173.35-384l84.666 96c-79.726 70.364-130.016 173.304-130.016 288 0 212.076 171.93 384 384 384 106.042 0 202.038-42.986 271.53-112.478l-143.53-143.522h384v384l-149.97-149.978c-92.654 92.658-220.644 149.978-362.030 149.978-282.77 0-512-229.23-512-512z" />
52
+ <glyph unicode="&#xe61a;" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256 0 141.384 128.942 256 288 256 159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM512 960c278.458 0 504.992-180.614 511.836-405.52-49.182 21.92-103.586 33.52-159.836 33.52-95.56 0-185.816-33.446-254.138-94.178-70.846-62.972-109.862-147.434-109.862-237.822 0-44.672 9.544-87.888 27.736-127.788-5.228-0.126-10.468-0.212-15.736-0.212-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" horiz-adv-x="1152" />
53
+ <glyph unicode="&#xe61b;" d="M848-64h-672c-26.51 0-48 21.49-48 48 0 68.862 29.068 152.204 77.758 222.942 40.692 59.118 90.684 103.62 144.678 129.61-23.798 21.644-44.294 48.026-60.508 78.122-26 48.262-39.746 104.048-39.746 161.328 0 79.606 26.204 154.822 73.786 211.79 49.664 59.46 116.442 92.208 188.032 92.208s138.368-32.748 188.034-92.21c47.58-56.968 73.786-132.182 73.786-211.79 0-57.28-13.744-113.066-39.744-161.328-16.214-30.096-36.71-56.478-60.51-78.122 53.994-25.99 103.986-70.492 144.678-129.61 48.688-70.736 77.756-154.078 77.756-222.94 0-26.51-21.49-48-48-48zM230.074 32h563.852c-9.226 39.34-28.52 82.384-54.762 120.51-41.454 60.226-93.176 99.622-145.638 110.926-22.106 4.764-37.888 24.31-37.888 46.924v34.292c0 17.26 9.266 33.19 24.27 41.722 59.478 33.832 97.912 108.266 97.912 189.626 0 114.692-74.384 208-165.818 208-91.432 0-165.818-93.308-165.818-208 0-81.36 38.434-155.792 97.914-189.626 15.002-8.534 24.268-24.462 24.268-41.722v-34.292c0-22.614-15.784-42.16-37.888-46.924-52.462-11.304-104.184-50.7-145.64-110.926-26.246-38.126-45.536-81.17-54.764-120.51z" />
54
+ <glyph unicode="&#xe61c;" d="M1024 960v-416l-160 160-192-192-96 96 192 192-160 160zM448 288l-192-192 160-160h-416v416l160-160 192 192z" />
55
+ <glyph unicode="&#xe61d;" d="M448 384v-416l-160 160-192-192-96 96 192 192-160 160zM1024 864l-192-192 160-160h-416v416l160-160 192 192z" />
56
+ <glyph unicode="&#xe61e;" d="M448 832v16c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576zM256 704v128h128v-128h-128zM832 528c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-576v-128h576v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h192v128h-192v16zM640 384v128h128v-128h-128zM448 208c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576v16zM256 64v128h128v-128h-128z" />
57
+ <glyph unicode="&#xe61f;" d="M771.516 640c18.126 12.88 35.512 27.216 51.444 43.148 33.402 33.402 55.746 74.5 62.912 115.722 7.858 45.186-3.672 87.14-31.63 115.1-22.3 22.298-52.51 34.086-87.364 34.086-49.632 0-101.922-23.824-143.46-65.362-66.476-66.476-105.226-158.238-126.076-223.722-15.44 65.802-46.206 154.644-106.018 214.458-32.094 32.092-73.114 48.57-111.846 48.57-31.654 0-61.78-11.004-84.26-33.486-49.986-49.988-43.232-137.786 15.086-196.104 20.792-20.792 45.098-38.062 70.72-52.412h-217.024v-256h64v-448h768v448.002h64v256h-188.484zM674.326 831.782c27.724 27.724 62.322 44.274 92.55 44.274 10.7 0 25.708-2.254 36.45-12.998 26.030-26.028 11.412-86.308-31.28-128.998-43.946-43.946-103.060-74.168-154.432-94.060h-50.672c18.568 57.548 52.058 136.456 107.384 191.782zM233.934 799.11c-0.702 9.12-0.050 26.248 12.196 38.494 10.244 10.244 23.788 12.396 33.348 12.396v0c21.258 0 43.468-10.016 60.932-27.48 33.872-33.872 61.766-87.772 80.668-155.876 0.51-1.84 1.008-3.67 1.496-5.486-1.816 0.486-3.646 0.984-5.486 1.496-68.104 18.904-122.002 46.798-155.874 80.67-15.828 15.826-25.77 36.16-27.28 55.786zM448 0h-256v416h256v-416zM448 448h-320v128h320v-128zM832 0h-256v416h256v-416zM896 448h-320v128h320v-128z" />
58
+ <glyph unicode="&#xe620;" d="M192-64h640l64 704h-768zM640 832v128h-256v-128h-320v-192l64 64h768l64-64v192h-320zM576 832h-128v64h128v-64z" />
59
+ <glyph unicode="&#xe621;" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
60
+ <glyph unicode="&#xe622;" d="M953.396 885.358l-4.028 4.042c-94.148 94.134-248.194 94.134-342.326 0l-218.106-218.136c-94.134-94.132-94.134-248.176 0-342.31l4.026-4.026c7.832-7.848 16.146-14.924 24.736-21.458l79.848 79.85c-9.302 5.494-18.126 12.072-26.116 20.060l-4.042 4.042c-51.114 51.098-51.114 134.272 0 185.39l218.128 218.112c51.116 51.118 134.274 51.118 185.386 0l4.042-4.024c51.1-51.116 51.1-134.292 0-185.39l-98.686-98.686c17.132-42.308 25.248-87.4 24.538-132.386l152.604 152.604c94.134 94.136 94.134 248.178-0.004 342.316zM631.042 571.066c-7.832 7.832-16.146 14.922-24.736 21.44l-79.848-79.832c9.304-5.496 18.126-12.074 26.116-20.062l4.042-4.040c51.116-51.116 51.116-134.272 0-185.388l-218.13-218.134c-51.118-51.102-134.276-51.102-185.388 0l-4.042 4.042c-51.098 51.12-51.098 134.276 0 185.388l98.688 98.686c-17.134 42.306-25.246 87.402-24.538 132.386l-152.602-152.598c-94.136-94.132-94.136-248.178 0-342.324l4.026-4.032c94.152-94.128 248.192-94.128 342.328 0l218.11 218.118c94.134 94.132 94.134 248.194 0 342.326l-4.026 4.024z" />
61
+ <glyph unicode="&#xe623;" d="M697.832 632.952l-64.952 64.922-324.81-324.742c-53.814-53.792-53.814-141.048 0-194.844 53.804-53.792 141.060-53.792 194.874 0l389.772 389.708c89.714 89.662 89.714 235.062 0 324.726-89.666 89.704-235.112 89.704-324.782 0l-409.23-409.178c-0.29-0.304-0.612-0.576-0.876-0.846-125.102-125.096-125.102-327.856 0-452.906 125.054-125.056 327.868-125.056 452.988 0 0.274 0.274 0.516 0.568 0.82 0.876l0.032-0.034 279.332 279.292-64.986 64.92-279.33-279.262c-0.296-0.268-0.564-0.57-0.846-0.844-89.074-89.058-233.98-89.058-323.076 0-89.062 89.042-89.062 233.922 0 322.978 0.304 0.304 0.604 0.582 0.888 0.846l-0.046 0.060 409.28 409.166c53.712 53.738 141.144 53.738 194.886 0 53.712-53.734 53.712-141.148 0-194.84l-389.772-389.7c-17.936-17.922-47.054-17.922-64.972 0-17.894 17.886-17.894 47.032 0 64.92l324.806 324.782z" />
62
+ <glyph unicode="&#xe624;" d="M832 787.694c76.466 0 145.092 41.622 192 73.106v-595.69c-46.908-31.486-115.534-73.11-192-73.11s-145.092 22.67-192 54.156c-46.908 31.48-115.534 54.15-192 54.15-76.466 0-145.090-38.916-192-70.396v595.69c46.91 31.484 115.534 70.4 192 70.4s145.092-22.668 192-54.152c46.908-31.484 115.534-54.154 192-54.154zM128 960c35.346 0 64-28.654 64-64v-960h-128v960c0 35.346 28.654 64 64 64z" />
63
+ <glyph unicode="&#xe625;" d="M864 832l-480-480-224 224-160-160 384-384 640 640z" />
64
+ <glyph unicode="&#xe626;" d="M1014.662 137.34c-0.004 0.004-0.008 0.008-0.012 0.010l-310.644 310.65 310.644 310.65c0.004 0.004 0.008 0.006 0.012 0.010 3.344 3.346 5.762 7.254 7.312 11.416 4.246 11.376 1.824 24.682-7.324 33.83l-146.746 146.746c-9.148 9.146-22.45 11.566-33.828 7.32-4.16-1.55-8.070-3.968-11.418-7.31 0-0.004-0.004-0.006-0.008-0.010l-310.648-310.652-310.648 310.65c-0.004 0.004-0.006 0.006-0.010 0.010-3.346 3.342-7.254 5.76-11.414 7.31-11.38 4.248-24.682 1.826-33.83-7.32l-146.748-146.748c-9.148-9.148-11.568-22.452-7.322-33.828 1.552-4.16 3.97-8.072 7.312-11.416 0.004-0.002 0.006-0.006 0.010-0.010l310.65-310.648-310.65-310.652c-0.002-0.004-0.006-0.006-0.008-0.010-3.342-3.346-5.76-7.254-7.314-11.414-4.248-11.376-1.826-24.682 7.322-33.83l146.748-146.746c9.15-9.148 22.452-11.568 33.83-7.322 4.16 1.552 8.070 3.97 11.416 7.312 0.002 0.004 0.006 0.006 0.010 0.010l310.648 310.65 310.648-310.65c0.004-0.002 0.008-0.006 0.012-0.008 3.348-3.344 7.254-5.762 11.414-7.314 11.378-4.246 24.684-1.826 33.828 7.322l146.746 146.748c9.148 9.148 11.57 22.454 7.324 33.83-1.552 4.16-3.97 8.068-7.314 11.414z" />
65
+ <glyph unicode="&#xe627;" d="M0 544v-192c0-17.672 14.328-32 32-32h960c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32h-960c-17.672 0-32-14.328-32-32z" />
66
+ <glyph unicode="&#xe628;" d="M992 576h-352v352c0 17.672-14.328 32-32 32h-192c-17.672 0-32-14.328-32-32v-352h-352c-17.672 0-32-14.328-32-32v-192c0-17.672 14.328-32 32-32h352v-352c0-17.672 14.328-32 32-32h192c17.672 0 32 14.328 32 32v352h352c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32z" />
67
+ <glyph unicode="&#xe629;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM813.256 493.254l-256.002 256c-24.992 24.994-65.514 24.994-90.508 0s-24.994-65.516 0-90.51l146.744-146.744h-357.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h357.49l-146.746-146.744c-24.994-24.994-24.994-65.518 0-90.512 12.498-12.496 28.878-18.744 45.256-18.744s32.758 6.248 45.254 18.744l256.002 256c24.992 24.994 24.992 65.518 0 90.51z" />
68
+ <glyph unicode="&#xe62a;" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM210.744 493.254l256.002 256c24.992 24.994 65.514 24.994 90.508 0s24.994-65.516 0-90.51l-146.744-146.744h357.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-357.49l146.746-146.744c24.994-24.994 24.994-65.518 0-90.512-12.498-12.496-28.878-18.744-45.256-18.744s-32.758 6.248-45.254 18.744l-256.002 256c-24.992 24.994-24.992 65.518 0 90.51z" />
69
+ <glyph unicode="&#xe62b;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384zM320 448c0 106.038 85.962 192 192 192s192-85.962 192-192c0-106.038-85.962-192-192-192-106.038 0-192 85.962-192 192z" />
70
+ <glyph unicode="&#xe62c;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384z" />
71
+ <glyph unicode="&#xe62d;" d="M0 960v-1024h1024v1024h-1024zM960 0h-896v896h896v-896z" />
72
+ <glyph unicode="&#xe62e;" d="M0 960v-1024h1024v1024h-1024zM960 0h-896v896h896v-896zM768 736l-320-320-192 192-128-128 320-320 448 448-128 128z" />
73
+ <glyph unicode="&#xe62f;" d="M1024 765.582c-37.676-16.708-78.164-28.002-120.66-33.080 43.372 26 76.686 67.17 92.372 116.23-40.596-24.078-85.556-41.56-133.41-50.98-38.32 40.83-92.922 66.34-153.346 66.34-116.022 0-210.088-94.058-210.088-210.078 0-16.466 1.858-32.5 5.44-47.878-174.6 8.764-329.402 92.4-433.018 219.506-18.084-31.028-28.446-67.116-28.446-105.618 0-72.888 37.088-137.192 93.46-174.866-34.438 1.092-66.832 10.542-95.154 26.278-0.020-0.876-0.020-1.756-0.020-2.642 0-101.788 72.418-186.696 168.522-206-17.626-4.8-36.188-7.372-55.348-7.372-13.538 0-26.698 1.32-39.528 3.772 26.736-83.46 104.32-144.206 196.252-145.896-71.9-56.35-162.486-89.934-260.916-89.934-16.958 0-33.68 0.994-50.116 2.94 92.972-59.61 203.402-94.394 322.042-94.394 386.422 0 597.736 320.124 597.736 597.744 0 9.108-0.206 18.168-0.61 27.18 41.056 29.62 76.672 66.62 104.836 108.748z" />
74
+ <glyph unicode="&#xe630;" d="M575.87-64h-191.87v512h-128v176.45l128 0.058-0.208 103.952c0 143.952 39.034 231.54 208.598 231.54h141.176v-176.484h-88.23c-66.032 0-69.206-24.656-69.206-70.684l-0.262-88.324h158.69l-18.704-176.45-139.854-0.058-0.13-512z" />
75
+ <glyph unicode="&#xe631;" d="M559.066 896c0 0-200.956 0-267.94 0-120.12 0-233.17-91.006-233.17-196.422 0-107.726 81.882-194.666 204.088-194.666 8.498 0 16.756 0.17 24.842 0.752-7.93-15.186-13.602-32.288-13.602-50.042 0-29.938 16.104-54.21 36.468-74.024-15.386 0-30.242-0.448-46.452-0.448-148.782 0.002-263.3-94.758-263.3-193.020 0-96.778 125.542-157.314 274.334-157.314 169.624 0 263.306 96.244 263.306 193.028 0 77.6-22.896 124.072-93.686 174.134-24.216 17.144-70.53 58.836-70.53 83.344 0 28.72 8.196 42.868 51.428 76.646 44.312 34.624 75.672 83.302 75.672 139.916 0 67.406-30.020 133.098-86.372 154.772h84.954l59.96 43.344zM465.48 240.542c2.126-8.972 3.284-18.206 3.284-27.628 0-78.2-50.392-139.31-194.974-139.31-102.842 0-177.116 65.104-177.116 143.3 0 76.642 92.126 140.444 194.964 139.332 24-0.254 46.368-4.116 66.67-10.69 55.826-38.826 95.876-60.762 107.172-105.004zM300.818 532.224c-69.038 2.064-134.636 77.226-146.552 167.86-11.916 90.666 34.37 160.042 103.388 157.99 69.010-2.074 134.638-74.814 146.558-165.458 11.906-90.66-34.39-162.458-103.394-160.392zM832 704v192h-64v-192h-192v-64h192v-192h64v192h192v64z" />
76
+ <glyph unicode="&#xe632;" d="M0 403.59c0-46.398 4.34-88.38 13.022-125.934 8.678-37.554 20.696-70.184 36.052-97.892 15.356-27.708 34.884-52.078 58.586-73.108 23.7-21.032 49.406-38.224 77.112-51.576 27.706-13.35 59.336-24.198 94.888-32.546 35.552-8.346 71.856-14.188 108.91-17.528 37.054-3.338 77.78-5.006 122.178-5.006 44.732 0 85.628 1.668 122.68 5.006 37.054 3.34 73.442 9.184 109.16 17.528 35.718 8.344 67.512 19.192 95.388 32.546 27.876 13.354 53.746 30.544 77.616 51.576 23.87 21.030 43.566 45.404 59.086 73.108 15.52 27.704 27.622 60.336 36.302 97.892 8.68 37.556 13.020 79.536 13.020 125.934 0 82.788-27.708 154.394-83.118 214.816 3.004 8.012 5.758 17.108 8.262 27.29 2.504 10.182 4.84 24.702 7.010 43.564 2.17 18.862 1.336 40.642-2.504 65.346-3.838 24.704-10.932 49.906-21.284 75.612l-7.51 1.502c-5.342 1-14.106 0.75-26.29-0.752s-26.372-4.506-42.562-9.014c-16.19-4.506-37.054-13.186-62.592-26.038-25.538-12.852-52.494-28.958-80.87-48.32-48.736 13.352-115.668 20.030-200.792 20.030-84.792 0-151.556-6.678-200.294-20.030-28.376 19.362-55.5 35.468-81.37 48.32-25.87 12.852-46.484 21.532-61.84 26.038-15.354 4.508-29.71 7.428-43.062 8.764-13.354 1.336-21.784 1.752-25.288 1.252-3.504-0.5-6.26-1.086-8.262-1.752-10.348-25.706-17.442-50.906-21.28-75.612-3.838-24.704-4.674-46.486-2.504-65.346 2.17-18.86 4.508-33.382 7.010-43.564 2.504-10.182 5.258-19.278 8.262-27.29-55.414-60.422-83.122-132.026-83.122-214.816zM125.684 277.906c0 48.070 21.866 92.136 65.596 132.194 13.018 12.020 28.208 21.114 45.566 27.292 17.358 6.176 36.97 9.68 58.836 10.516 21.866 0.834 42.812 0.668 62.842-0.502 20.028-1.168 44.732-2.754 74.108-4.756 29.376-2.004 54.748-3.004 76.112-3.004 21.366 0 46.736 1 76.112 3.004 29.378 2.002 54.078 3.588 74.11 4.756 20.030 1.17 40.974 1.336 62.842 0.502 21.866-0.836 41.476-4.34 58.838-10.516 17.356-6.176 32.544-15.27 45.564-27.292 43.73-39.394 65.598-83.456 65.598-132.194 0-28.712-3.59-54.162-10.768-76.364-7.178-22.2-16.358-40.81-27.542-55.83-11.184-15.020-26.704-27.79-46.568-38.306-19.862-10.516-39.222-18.61-58.084-24.288-18.862-5.674-43.066-10.098-72.608-13.27-29.546-3.172-55.916-5.092-79.118-5.758-23.2-0.668-52.66-1.002-88.378-1.002-35.718 0-65.178 0.334-88.378 1.002-23.2 0.666-49.574 2.586-79.116 5.758-29.542 3.172-53.744 7.596-72.606 13.27-18.86 5.678-38.222 13.774-58.084 24.288-19.862 10.514-35.386 23.282-46.568 38.306-11.182 15.022-20.364 33.63-27.54 55.83-7.178 22.202-10.766 47.656-10.766 76.364zM640 288c0 53.020 28.654 96 64 96s64-42.98 64-96c0-53.020-28.654-96-64-96-35.346 0-64 42.98-64 96zM256 288c0 53.020 28.654 96 64 96s64-42.98 64-96c0-53.020-28.654-96-64-96-35.346 0-64 42.98-64 96z" />
77
+ <glyph unicode="&#xe633;" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM384 128h-128v448h128v-448zM320 640c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM832 128h-128v256c0 35.346-28.654 64-64 64s-64-28.654-64-64v-256h-128v448h128v-79.472c26.398 36.264 66.752 79.472 112 79.472 79.53 0 144-71.634 144-160v-288z" />
78
+ <glyph unicode="&#xe634;" d="M928 832h-832c-52.8 0-96-43.2-96-96v-640c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v640c0 52.8-43.2 96-96 96zM398.74 409.628l-270.74-210.892v501.642l270.74-290.75zM176.38 704h671.24l-335.62-252-335.62 252zM409.288 398.302l102.712-110.302 102.71 110.302 210.554-270.302h-626.528l210.552 270.302zM625.26 409.628l270.74 290.75v-501.642l-270.74 210.892z" />
79
+ <glyph unicode="&#xe635;" d="M505.754 931.789c-260.147-3.482-468.224-217.19-464.742-477.338 3.482-259.994 217.19-468.122 477.338-464.64 260.045 3.482 468.173 217.19 464.64 477.338-3.43 260.045-217.139 468.122-477.235 464.64zM504.371 174.080h-2.611c-40.038 1.178-68.301 30.72-67.174 70.195 1.126 38.758 30.054 66.97 68.813 66.97l2.355-0.051c41.165-1.229 69.12-30.464 67.891-71.066-1.126-38.861-29.645-66.048-69.274-66.048zM672.87 508.518c-9.472-13.363-30.157-30.003-56.269-50.33l-28.774-19.866c-15.77-12.288-25.293-23.808-28.826-35.123-2.867-9.011-4.198-11.315-4.454-29.491l-0.051-4.659h-109.722l0.307 9.318c1.331 38.195 2.304 60.621 18.125 79.206 24.832 29.133 79.616 64.41 81.92 65.894 7.834 5.939 14.438 12.646 19.405 19.814 11.52 15.872 16.589 28.416 16.589 40.653 0 17.050-5.069 32.819-15.053 46.848-9.626 13.568-27.904 20.429-54.323 20.429-26.214 0-44.134-8.346-54.886-25.395-11.11-17.562-16.64-35.942-16.64-54.784v-4.71h-113.152l0.205 4.915c2.918 69.325 27.648 119.194 73.523 148.326 28.774 18.586 64.614 27.955 106.394 27.955 54.733 0 101.018-13.312 137.37-39.526 36.864-26.573 55.552-66.406 55.552-118.323 0-29.082-9.165-56.371-27.238-81.152z" />
80
+ <glyph unicode="&#xe636;" d="M778.189 512h-215.040v215.040c0 28.262-22.886 30.72-51.2 30.72-28.262 0-51.2-2.406-51.2-30.72v-215.040h-214.989c-28.314 0-30.72-22.938-30.72-51.2s2.406-51.2 30.72-51.2h214.989v-215.040c0-28.262 22.938-30.72 51.2-30.72 28.314 0 51.2 2.458 51.2 30.72v215.040h215.040c28.314 0 30.771 22.938 30.771 51.2s-2.458 51.2-30.771 51.2z" />
81
+ <glyph unicode="&#xe637;" d="M778.189 512h-532.429c-28.314 0-30.72-22.938-30.72-51.2s2.406-51.2 30.72-51.2h532.429c28.314 0 30.771 22.938 30.771 51.2s-2.458 51.2-30.771 51.2z" />
82
+ <glyph unicode="&#xe638;" d="M512 890.88c-237.568 0-430.080-192.614-430.080-430.080 0-237.568 192.563-430.080 430.080-430.080 237.517 0 430.080 192.563 430.080 430.080 0 237.517-192.563 430.080-430.080 430.080zM770.56 513.126v-104.704h-517.12v104.704h517.12z" />
83
+ <glyph unicode="&#xe639;" d="M512 890.88c-237.568 0-430.080-192.614-430.080-430.080 0-237.568 192.563-430.080 430.080-430.080 237.517 0 430.080 192.563 430.080 430.080 0 237.517-192.563 430.080-430.080 430.080zM564.326 408.474v-206.182h-104.653v206.182h-206.234v104.653h206.182v206.234h104.704v-206.182h206.182v-104.704h-206.182z" />
84
+ <glyph unicode="&#xe63a;" d="M512 890.88c-237.568 0-430.080-192.614-430.080-430.080 0-237.568 192.563-430.080 430.080-430.080 237.517 0 430.080 192.563 430.080 430.080 0 237.517-192.563 430.080-430.080 430.080zM600.525 460.8l156.723-156.723-88.525-88.525-156.723 156.723-156.723-156.723-88.474 88.525 156.672 156.723-156.672 156.672 88.474 88.525 156.723-156.672 156.723 156.672 88.525-88.474-156.723-156.723z" />
85
+ <glyph unicode="&#xe63b;" d="M976.384 614.4h-928.768c-47.104 0-49.51-22.938-46.899-50.995l42.24-461.21c2.56-28.058 9.216-50.995 56.269-50.995h825.6c48.026 0 53.709 22.938 56.269 50.995l42.24 461.21c2.509 28.058 0.205 50.995-46.95 50.995zM942.285 727.040c-5.632 22.528-33.536 40.96-61.901 40.96h-348.877c-28.416 0-68.045 16.23-88.166 36.147l-30.515 30.106c-20.070 19.917-59.75 36.147-88.115 36.147h-166.707c-28.365 0-54.17-22.886-57.293-50.893l-14.95-133.427h866.867l-10.342 40.96z" />
86
+ <glyph unicode="&#xe63c;" d="M658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384 0-212.078-171.922-384-384-384z" />
87
+ <glyph unicode="&#xe63d;" d="M874.040 810.038c96.702-96.704 149.96-225.28 149.96-362.040s-53.258-265.334-149.96-362.038c-96.706-96.702-225.28-149.96-362.040-149.96-136.76 0-265.334 53.258-362.040 149.96-96.702 96.704-149.96 225.278-149.96 362.038 0 136.76 53.254 265.336 149.96 362.040 96.706 96.704 225.28 149.962 362.040 149.962 136.76 0 265.334-53.258 362.040-149.962zM828.784 131.214c63.058 63.060 104.986 141.608 122.272 227.062-13.474-19.836-26.362-27.194-34.344 17.206-8.22 72.39-74.708 26.148-116.516 51.86-44.004-29.658-142.906 57.662-126.098-40.824 25.934-44.422 140.008 59.45 83.148-34.542-36.274-65.616-132.642-210.932-120.106-286.258 1.582-109.744-112.134-22.884-151.314 13.52-26.356 72.92-8.982 200.374-77.898 236.086-74.802 3.248-139.004 10.046-167.994 93.67-17.446 59.828 18.564 148.894 82.678 162.644 93.85 58.966 127.374-69.054 215.39-71.434 27.328 28.594 101.816 37.686 107.992 69.75-57.75 10.19 73.268 48.558-5.528 70.382-43.47-5.112-71.478-45.074-48.368-78.958-84.238-19.642-86.936 121.904-167.91 77.258-2.058-70.59-132.222-22.886-45.036-8.572 29.956 13.088-48.86 51.016-6.28 44.124 20.916 1.136 91.332 25.812 72.276 42.402 39.21 24.34 72.16-58.29 110.538 1.882 27.708 46.266-11.62 54.808-46.35 31.356-19.58 21.924 34.57 69.276 82.332 89.738 15.918 6.82 31.122 10.536 42.746 9.484 24.058-27.792 68.55-32.606 70.878 3.342-59.582 28.534-125.276 43.608-193.292 43.608-97.622 0-190.47-31.024-267.308-88.39 20.65-9.46 32.372-21.238 12.478-36.296-15.456-46.054-78.17-107.876-133.224-99.124-28.586-49.296-47.412-103.606-55.46-160.528 46.112-15.256 56.744-45.45 46.836-55.55-23.496-20.488-37.936-49.53-45.376-81.322 15.010-91.836 58.172-176.476 125.27-243.576 84.616-84.614 197.118-131.214 316.784-131.214 119.664 0 232.168 46.6 316.784 131.214z" />
88
+ <glyph unicode="&#xe63e;" d="M286.704 80.998c-13.722-13.875-13.722-36.25 0-50.125s35.891-13.875 49.613 0l400.896 404.838c13.722 13.875 13.722 36.301 0 50.125l-400.896 404.89c-13.722 13.875-35.891 13.875-49.613 0s-13.722-36.25 0-50.125l365.568-379.802-365.568-379.802z" />
89
+ <glyph unicode="&#xe63f;" d="M512 768c-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.314 0 416.878 130.042 512 320-95.116 189.958-288.686 320-512 320zM764.45 598.296c60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.298-75.594-48.216-162.89-73.702-252.448-73.702-89.56 0-176.856 25.486-252.45 73.704-60.16 38.372-111.14 89.772-149.434 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.858 7.3-9.958-27.328-15.408-56.822-15.408-87.596 0-141.384 114.616-256 256-256s256 114.616 256 256c0 30.774-5.45 60.268-15.408 87.598 3.98-2.378 7.938-4.802 11.858-7.302zM512 550c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96z" />
90
+ </font></defs></svg>
@@ -1,15 +1 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // the compiled file.
9
- //
10
- // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
- // GO AFTER THE REQUIRES BELOW.
12
- //
13
- //= require jquery
14
- //= require jquery_ujs
15
1
  //= require_tree .
@@ -0,0 +1,8 @@
1
+ /*
2
+ HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
3
+ */
4
+ (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
5
+ a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
6
+ c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
7
+ "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
8
+ if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
@@ -0,0 +1,310 @@
1
+ /*
2
+ *= require maily/normalize
3
+ *= require maily/icons
4
+ */
5
+
6
+ /* Default */
7
+ @font-face {
8
+ font-weight: light;
9
+ font-style: normal;
10
+ font-family: 'Josefin Sans';
11
+ src: url('fonts/JosefinSans-Light.ttf') format('truetype');
12
+ }
13
+
14
+ ::-webkit-input-placeholder {
15
+ padding: 0 .2em;
16
+ vertical-align: bottom;
17
+ font-weight: 300;
18
+ }
19
+
20
+ :-moz-placeholder { font-size: 0.6em; }
21
+ ::-moz-placeholder { font-size: 0.6em; }
22
+ :-ms-input-placeholder { font-size: 0.6em; }
23
+
24
+
25
+ $textColor: #444;
26
+ $linkColor: #59abc6;
27
+
28
+ .clearfix:before,
29
+ .clearfix:after {
30
+ display: table;
31
+ content: " ";
32
+ }
33
+
34
+ .clearfix:after { clear: both; }
35
+
36
+ body {
37
+ color: $textColor;
38
+ font-size: 1em;
39
+ font-family: "Helvetica Neue", Helvetica, sans-serif;
40
+
41
+ a {
42
+ color: $linkColor;
43
+ text-decoration: none;
44
+ }
45
+ }
46
+
47
+ .title {
48
+ margin-top: 0;
49
+ }
50
+
51
+
52
+ header.header, footer.footer {
53
+ position: fixed;
54
+ left: 0;
55
+ z-index: 99;
56
+ padding: .75em;
57
+ width: 100%;
58
+ background-color: rgba(255,255,255, .95);
59
+ }
60
+
61
+ /* HEADER */
62
+ header.header {
63
+ top: 0;
64
+ box-shadow: 0 .0625em .3125em rgba(0,0,0, .15);
65
+
66
+ .logo_link {
67
+ color: $textColor;
68
+ text-decoration: none;
69
+ font: 400 2em/1 'Josefin Sans';
70
+
71
+ em:before {
72
+ font-size: .8em;
73
+ font-family: 'maily';
74
+ }
75
+ }
76
+ }
77
+
78
+ /* FOOTER */
79
+ footer.footer {
80
+ bottom: 0;
81
+ box-shadow: 0 -.0625em .3125em rgba(0,0,0, .15);
82
+ font-family: "Helvetica Neue", Helvetica, sans-serif;
83
+
84
+ a {
85
+ color: $linkColor;
86
+ text-decoration: none;
87
+ font-size: .9em;
88
+ }
89
+ }
90
+
91
+ /* CONTENT */
92
+ .wrap_content {
93
+ display: inline-block;
94
+ box-sizing: border-box;
95
+ padding: 6em .75em 4em;
96
+ width: 100%;
97
+ }
98
+
99
+ .content {
100
+ margin-right: 2em;
101
+ margin-left: 2em;
102
+ padding-left: 20%;
103
+
104
+ ul.maily_action_bar {
105
+ margin: 0;
106
+ padding: 0;
107
+ list-style: none;
108
+ font-size: 1.2em;
109
+
110
+ em:before {
111
+ margin-right: .2em;
112
+ font-size: .9em;
113
+ }
114
+
115
+ &, & ul {
116
+ display: inline-block;
117
+ width: 100%;
118
+ }
119
+
120
+ li, ul li {
121
+ float: left;
122
+ margin-right: .5em;
123
+ &:last-child { margin-right: 0; }
124
+ }
125
+
126
+ ul {
127
+ margin: 0;
128
+ padding: 0;
129
+ list-style: none;
130
+ }
131
+
132
+ li.maily_languages {
133
+ float: right;
134
+ }
135
+ }
136
+
137
+ li.maily_splitter {
138
+ width: 1px;
139
+ border-left: 1px #ccc solid;
140
+ text-indent: -999999em;
141
+ }
142
+
143
+ .maily_send {
144
+ ul {
145
+ li {
146
+ float: left;
147
+ margin-right: .4em;
148
+ }
149
+ }
150
+ }
151
+
152
+ .maily_mail_preview {
153
+ height: 100%;
154
+ box-sizing: border-box;
155
+ padding: 1em;
156
+ border: solid 1px #ccc;
157
+ border-radius: 3px;
158
+
159
+ .maily_mail_details {
160
+ margin: 0 0 1em 0;
161
+ padding: 0;
162
+ color: #666;
163
+ list-style: none;
164
+ font-size: .8em;
165
+
166
+ li { line-height: 1.5em; }
167
+ }
168
+
169
+ .maily_mail_attachments {
170
+ padding: 1em 0 0 0;
171
+ border-top: solid 1px #ccc;
172
+ color: #666;
173
+ list-style: none;
174
+ font-size: .8em;
175
+
176
+ ul {
177
+ display: inline-block;
178
+ margin: 0;
179
+ padding: 0;
180
+ width: 100%;
181
+ list-style: none;
182
+
183
+ li {
184
+ float: left;
185
+ margin: 1em 1em 0 0;
186
+ }
187
+ }
188
+ }
189
+
190
+ iframe.maily_preview {
191
+ padding-top: 1em;
192
+ border: none;
193
+ border-top: solid 1px #ccc;
194
+ border-radius: 2px;
195
+ }
196
+ }
197
+
198
+ .maily_textfield {
199
+ height: 1em;
200
+ border: solid 1px #ccc;
201
+ border-radius: 2px;
202
+ background: #fff;
203
+ line-height: 1;
204
+ }
205
+
206
+ .maily_button {
207
+ box-sizing: border-box;
208
+ padding: 0;
209
+ border: none;
210
+ background: none;
211
+ color: $linkColor;
212
+ }
213
+
214
+ .maily_format_mail {
215
+ position: relative;
216
+ display: inline-block;
217
+ float: right;
218
+ margin: -2em 0 0 0;
219
+ padding: 0;
220
+ width: 6.5em;
221
+ list-style: none;
222
+
223
+
224
+ li {
225
+ float: left;
226
+
227
+ a.format_selected {
228
+ color: darken($linkColor, 20%);
229
+ font-weight: bold;
230
+ }
231
+
232
+ + li {
233
+ margin: 0 0 0 .4em;
234
+ padding: 0 0 0 .4em;
235
+ border-left: solid 1px #ccc;
236
+ }
237
+ }
238
+ }
239
+
240
+ .maily_mail_updatearea {
241
+ position: relative;
242
+ overflow: visible;
243
+ min-height: 450px;
244
+ width: 100%;
245
+ height: 100%;
246
+ border: none;
247
+ }
248
+ }
249
+
250
+ /* SIDEBAR */
251
+ aside.sidebar {
252
+ float: left;
253
+ width: 20%;
254
+
255
+ .main_title {
256
+ margin: 0 0 1em;
257
+ font-size: 1.5em;
258
+ }
259
+
260
+ section.nav_list {
261
+ margin: 0 0 1.5em 2.1em;
262
+
263
+ .nav_title {
264
+ margin: 0 0 .4em;
265
+ font-weight: 400;
266
+ font-size: 1.2em;
267
+ }
268
+
269
+ ul {
270
+ margin: 0;
271
+ padding: 0;
272
+ list-style: none;
273
+
274
+ li {
275
+ margin-bottom: .4em;
276
+ list-style: none;
277
+
278
+ a {
279
+ color: $linkColor;
280
+ text-decoration: none;
281
+ font-size: .9em;
282
+
283
+ &.maily_selected_mail {
284
+
285
+ color: darken($linkColor, 20%);
286
+ font-weight: bold;
287
+ &:before {
288
+ content: "\e63e";
289
+ text-transform: none;
290
+ font-weight: normal;
291
+ font-weight: bolder;
292
+ font-style: normal;
293
+ font-variant: normal;
294
+ font-size: .6em;
295
+ font-family: 'maily';
296
+ line-height: 1;
297
+ speak: none;
298
+ -webkit-font-smoothing: antialiased;
299
+ -moz-osx-font-smoothing: grayscale;
300
+ }
301
+ }
302
+
303
+ &:hover {
304
+ color: darken($linkColor, 20%);
305
+ }
306
+ }
307
+ }
308
+ }
309
+ }
310
+ }