less-rails-semantic_ui 1.0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (369) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +13 -0
  4. data/Appraisals +7 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +65 -0
  8. data/Rakefile +9 -0
  9. data/assets/fonts/semantic_ui/themes/basic/assets/fonts/icons.eot +0 -0
  10. data/assets/fonts/semantic_ui/themes/basic/assets/fonts/icons.svg +450 -0
  11. data/assets/fonts/semantic_ui/themes/basic/assets/fonts/icons.ttf +0 -0
  12. data/assets/fonts/semantic_ui/themes/basic/assets/fonts/icons.woff +0 -0
  13. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.eot +0 -0
  14. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.otf +0 -0
  15. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.svg +504 -0
  16. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.ttf +0 -0
  17. data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.woff +0 -0
  18. data/assets/images/semantic_ui/themes/default/assets/images/flags.png +0 -0
  19. data/assets/javascripts/semantic_ui/definitions/behaviors/api.js +839 -0
  20. data/assets/javascripts/semantic_ui/definitions/behaviors/colorize.js +272 -0
  21. data/assets/javascripts/semantic_ui/definitions/behaviors/form.js +795 -0
  22. data/assets/javascripts/semantic_ui/definitions/behaviors/state.js +690 -0
  23. data/assets/javascripts/semantic_ui/definitions/behaviors/visibility.js +951 -0
  24. data/assets/javascripts/semantic_ui/definitions/behaviors/visit.js +516 -0
  25. data/assets/javascripts/semantic_ui/definitions/globals/site.js +487 -0
  26. data/assets/javascripts/semantic_ui/definitions/modules/accordion.js +504 -0
  27. data/assets/javascripts/semantic_ui/definitions/modules/checkbox.js +469 -0
  28. data/assets/javascripts/semantic_ui/definitions/modules/dimmer.js +626 -0
  29. data/assets/javascripts/semantic_ui/definitions/modules/dropdown.js +1496 -0
  30. data/assets/javascripts/semantic_ui/definitions/modules/modal.js +809 -0
  31. data/assets/javascripts/semantic_ui/definitions/modules/nag.js +480 -0
  32. data/assets/javascripts/semantic_ui/definitions/modules/popup.js +1050 -0
  33. data/assets/javascripts/semantic_ui/definitions/modules/progress.js +652 -0
  34. data/assets/javascripts/semantic_ui/definitions/modules/rating.js +451 -0
  35. data/assets/javascripts/semantic_ui/definitions/modules/search.js +886 -0
  36. data/assets/javascripts/semantic_ui/definitions/modules/shape.js +830 -0
  37. data/assets/javascripts/semantic_ui/definitions/modules/sidebar.js +976 -0
  38. data/assets/javascripts/semantic_ui/definitions/modules/sticky.js +768 -0
  39. data/assets/javascripts/semantic_ui/definitions/modules/tab.js +801 -0
  40. data/assets/javascripts/semantic_ui/definitions/modules/transition.js +865 -0
  41. data/assets/javascripts/semantic_ui/definitions/modules/video.js +539 -0
  42. data/assets/stylesheets/semantic_ui/definitions/collections/breadcrumb.less +128 -0
  43. data/assets/stylesheets/semantic_ui/definitions/collections/form.less +839 -0
  44. data/assets/stylesheets/semantic_ui/definitions/collections/grid.less +1201 -0
  45. data/assets/stylesheets/semantic_ui/definitions/collections/menu.less +1600 -0
  46. data/assets/stylesheets/semantic_ui/definitions/collections/message.less +448 -0
  47. data/assets/stylesheets/semantic_ui/definitions/collections/table.less +877 -0
  48. data/assets/stylesheets/semantic_ui/definitions/elements/button.less +2396 -0
  49. data/assets/stylesheets/semantic_ui/definitions/elements/divider.less +262 -0
  50. data/assets/stylesheets/semantic_ui/definitions/elements/flag.less +52 -0
  51. data/assets/stylesheets/semantic_ui/definitions/elements/header.less +564 -0
  52. data/assets/stylesheets/semantic_ui/definitions/elements/icon.less +351 -0
  53. data/assets/stylesheets/semantic_ui/definitions/elements/image.less +267 -0
  54. data/assets/stylesheets/semantic_ui/definitions/elements/input.less +448 -0
  55. data/assets/stylesheets/semantic_ui/definitions/elements/label.less +959 -0
  56. data/assets/stylesheets/semantic_ui/definitions/elements/list.less +896 -0
  57. data/assets/stylesheets/semantic_ui/definitions/elements/loader.less +268 -0
  58. data/assets/stylesheets/semantic_ui/definitions/elements/rail.less +132 -0
  59. data/assets/stylesheets/semantic_ui/definitions/elements/reveal.less +263 -0
  60. data/assets/stylesheets/semantic_ui/definitions/elements/segment.less +603 -0
  61. data/assets/stylesheets/semantic_ui/definitions/elements/step.less +358 -0
  62. data/assets/stylesheets/semantic_ui/definitions/globals/reset.less +45 -0
  63. data/assets/stylesheets/semantic_ui/definitions/globals/site.less +138 -0
  64. data/assets/stylesheets/semantic_ui/definitions/modules/accordion.less +221 -0
  65. data/assets/stylesheets/semantic_ui/definitions/modules/checkbox.less +468 -0
  66. data/assets/stylesheets/semantic_ui/definitions/modules/dimmer.less +186 -0
  67. data/assets/stylesheets/semantic_ui/definitions/modules/dropdown.less +914 -0
  68. data/assets/stylesheets/semantic_ui/definitions/modules/modal.less +447 -0
  69. data/assets/stylesheets/semantic_ui/definitions/modules/nag.less +165 -0
  70. data/assets/stylesheets/semantic_ui/definitions/modules/popup.less +296 -0
  71. data/assets/stylesheets/semantic_ui/definitions/modules/progress.less +404 -0
  72. data/assets/stylesheets/semantic_ui/definitions/modules/rating.less +204 -0
  73. data/assets/stylesheets/semantic_ui/definitions/modules/search.less +344 -0
  74. data/assets/stylesheets/semantic_ui/definitions/modules/shape.less +158 -0
  75. data/assets/stylesheets/semantic_ui/definitions/modules/sidebar.less +464 -0
  76. data/assets/stylesheets/semantic_ui/definitions/modules/sticky.less +80 -0
  77. data/assets/stylesheets/semantic_ui/definitions/modules/tab.less +100 -0
  78. data/assets/stylesheets/semantic_ui/definitions/modules/transition.less +95 -0
  79. data/assets/stylesheets/semantic_ui/definitions/modules/video.less +131 -0
  80. data/assets/stylesheets/semantic_ui/definitions/views/ad.less +272 -0
  81. data/assets/stylesheets/semantic_ui/definitions/views/card.less +751 -0
  82. data/assets/stylesheets/semantic_ui/definitions/views/comment.less +262 -0
  83. data/assets/stylesheets/semantic_ui/definitions/views/feed.less +278 -0
  84. data/assets/stylesheets/semantic_ui/definitions/views/item.less +472 -0
  85. data/assets/stylesheets/semantic_ui/definitions/views/statistic.less +422 -0
  86. data/assets/stylesheets/semantic_ui/theme.less +48 -0
  87. data/assets/stylesheets/semantic_ui/themes/amazon/elements/button.overrides +46 -0
  88. data/assets/stylesheets/semantic_ui/themes/amazon/elements/button.variables +57 -0
  89. data/assets/stylesheets/semantic_ui/themes/basic/collections/table.overrides +4 -0
  90. data/assets/stylesheets/semantic_ui/themes/basic/collections/table.variables +10 -0
  91. data/assets/stylesheets/semantic_ui/themes/basic/elements/button.overrides +4 -0
  92. data/assets/stylesheets/semantic_ui/themes/basic/elements/button.variables +44 -0
  93. data/assets/stylesheets/semantic_ui/themes/basic/elements/icon.overrides +189 -0
  94. data/assets/stylesheets/semantic_ui/themes/basic/elements/icon.variables +5 -0
  95. data/assets/stylesheets/semantic_ui/themes/basic/elements/step.overrides +7 -0
  96. data/assets/stylesheets/semantic_ui/themes/basic/elements/step.variables +10 -0
  97. data/assets/stylesheets/semantic_ui/themes/basic/globals/reset.overrides +5 -0
  98. data/assets/stylesheets/semantic_ui/themes/basic/globals/reset.variables +3 -0
  99. data/assets/stylesheets/semantic_ui/themes/basic/modules/progress.overrides +3 -0
  100. data/assets/stylesheets/semantic_ui/themes/basic/modules/progress.variables +15 -0
  101. data/assets/stylesheets/semantic_ui/themes/basic/views/card.overrides +4 -0
  102. data/assets/stylesheets/semantic_ui/themes/basic/views/card.variables +34 -0
  103. data/assets/stylesheets/semantic_ui/themes/bookish/elements/header.overrides +15 -0
  104. data/assets/stylesheets/semantic_ui/themes/bookish/elements/header.variables +37 -0
  105. data/assets/stylesheets/semantic_ui/themes/bootstrap3/elements/button.overrides +0 -0
  106. data/assets/stylesheets/semantic_ui/themes/bootstrap3/elements/button.variables +63 -0
  107. data/assets/stylesheets/semantic_ui/themes/chubby/collections/form.overrides +8 -0
  108. data/assets/stylesheets/semantic_ui/themes/chubby/collections/form.variables +9 -0
  109. data/assets/stylesheets/semantic_ui/themes/chubby/elements/button.overrides +21 -0
  110. data/assets/stylesheets/semantic_ui/themes/chubby/elements/button.variables +57 -0
  111. data/assets/stylesheets/semantic_ui/themes/chubby/elements/header.overrides +5 -0
  112. data/assets/stylesheets/semantic_ui/themes/chubby/elements/header.variables +21 -0
  113. data/assets/stylesheets/semantic_ui/themes/chubby/modules/accordion.overrides +7 -0
  114. data/assets/stylesheets/semantic_ui/themes/chubby/modules/accordion.variables +15 -0
  115. data/assets/stylesheets/semantic_ui/themes/chubby/views/comment.overrides +12 -0
  116. data/assets/stylesheets/semantic_ui/themes/chubby/views/comment.variables +46 -0
  117. data/assets/stylesheets/semantic_ui/themes/classic/collections/table.overrides +3 -0
  118. data/assets/stylesheets/semantic_ui/themes/classic/collections/table.variables +14 -0
  119. data/assets/stylesheets/semantic_ui/themes/classic/elements/button.overrides +3 -0
  120. data/assets/stylesheets/semantic_ui/themes/classic/elements/button.variables +96 -0
  121. data/assets/stylesheets/semantic_ui/themes/classic/elements/header.overrides +3 -0
  122. data/assets/stylesheets/semantic_ui/themes/classic/elements/header.variables +12 -0
  123. data/assets/stylesheets/semantic_ui/themes/classic/modules/progress.overrides +3 -0
  124. data/assets/stylesheets/semantic_ui/themes/classic/modules/progress.variables +8 -0
  125. data/assets/stylesheets/semantic_ui/themes/classic/views/card.overrides +98 -0
  126. data/assets/stylesheets/semantic_ui/themes/classic/views/card.variables +22 -0
  127. data/assets/stylesheets/semantic_ui/themes/default/collections/breadcrumb.overrides +3 -0
  128. data/assets/stylesheets/semantic_ui/themes/default/collections/breadcrumb.variables +43 -0
  129. data/assets/stylesheets/semantic_ui/themes/default/collections/form.overrides +3 -0
  130. data/assets/stylesheets/semantic_ui/themes/default/collections/form.variables +189 -0
  131. data/assets/stylesheets/semantic_ui/themes/default/collections/grid.overrides +4 -0
  132. data/assets/stylesheets/semantic_ui/themes/default/collections/grid.variables +93 -0
  133. data/assets/stylesheets/semantic_ui/themes/default/collections/menu.overrides +3 -0
  134. data/assets/stylesheets/semantic_ui/themes/default/collections/menu.variables +322 -0
  135. data/assets/stylesheets/semantic_ui/themes/default/collections/message.overrides +3 -0
  136. data/assets/stylesheets/semantic_ui/themes/default/collections/message.variables +88 -0
  137. data/assets/stylesheets/semantic_ui/themes/default/collections/table.overrides +3 -0
  138. data/assets/stylesheets/semantic_ui/themes/default/collections/table.variables +228 -0
  139. data/assets/stylesheets/semantic_ui/themes/default/elements/button.overrides +3 -0
  140. data/assets/stylesheets/semantic_ui/themes/default/elements/button.variables +260 -0
  141. data/assets/stylesheets/semantic_ui/themes/default/elements/divider.overrides +3 -0
  142. data/assets/stylesheets/semantic_ui/themes/default/elements/divider.variables +54 -0
  143. data/assets/stylesheets/semantic_ui/themes/default/elements/flag.overrides +979 -0
  144. data/assets/stylesheets/semantic_ui/themes/default/elements/flag.variables +13 -0
  145. data/assets/stylesheets/semantic_ui/themes/default/elements/header.overrides +4 -0
  146. data/assets/stylesheets/semantic_ui/themes/default/elements/header.variables +126 -0
  147. data/assets/stylesheets/semantic_ui/themes/default/elements/icon.overrides +661 -0
  148. data/assets/stylesheets/semantic_ui/themes/default/elements/icon.variables +34 -0
  149. data/assets/stylesheets/semantic_ui/themes/default/elements/image.overrides +3 -0
  150. data/assets/stylesheets/semantic_ui/themes/default/elements/image.variables +42 -0
  151. data/assets/stylesheets/semantic_ui/themes/default/elements/input.overrides +3 -0
  152. data/assets/stylesheets/semantic_ui/themes/default/elements/input.variables +114 -0
  153. data/assets/stylesheets/semantic_ui/themes/default/elements/label.overrides +3 -0
  154. data/assets/stylesheets/semantic_ui/themes/default/elements/label.variables +164 -0
  155. data/assets/stylesheets/semantic_ui/themes/default/elements/list.overrides +3 -0
  156. data/assets/stylesheets/semantic_ui/themes/default/elements/list.variables +204 -0
  157. data/assets/stylesheets/semantic_ui/themes/default/elements/loader.overrides +3 -0
  158. data/assets/stylesheets/semantic_ui/themes/default/elements/loader.variables +61 -0
  159. data/assets/stylesheets/semantic_ui/themes/default/elements/rail.overrides +3 -0
  160. data/assets/stylesheets/semantic_ui/themes/default/elements/rail.variables +24 -0
  161. data/assets/stylesheets/semantic_ui/themes/default/elements/reveal.overrides +3 -0
  162. data/assets/stylesheets/semantic_ui/themes/default/elements/reveal.variables +15 -0
  163. data/assets/stylesheets/semantic_ui/themes/default/elements/segment.overrides +3 -0
  164. data/assets/stylesheets/semantic_ui/themes/default/elements/segment.variables +100 -0
  165. data/assets/stylesheets/semantic_ui/themes/default/elements/step.overrides +16 -0
  166. data/assets/stylesheets/semantic_ui/themes/default/elements/step.variables +94 -0
  167. data/assets/stylesheets/semantic_ui/themes/default/globals/reset.overrides +434 -0
  168. data/assets/stylesheets/semantic_ui/themes/default/globals/reset.variables +3 -0
  169. data/assets/stylesheets/semantic_ui/themes/default/globals/site.overrides +3 -0
  170. data/assets/stylesheets/semantic_ui/themes/default/globals/site.variables +599 -0
  171. data/assets/stylesheets/semantic_ui/themes/default/modules/accordion.overrides +28 -0
  172. data/assets/stylesheets/semantic_ui/themes/default/modules/accordion.variables +101 -0
  173. data/assets/stylesheets/semantic_ui/themes/default/modules/chatroom.overrides +3 -0
  174. data/assets/stylesheets/semantic_ui/themes/default/modules/chatroom.variables +3 -0
  175. data/assets/stylesheets/semantic_ui/themes/default/modules/checkbox.overrides +33 -0
  176. data/assets/stylesheets/semantic_ui/themes/default/modules/checkbox.variables +139 -0
  177. data/assets/stylesheets/semantic_ui/themes/default/modules/dimmer.overrides +3 -0
  178. data/assets/stylesheets/semantic_ui/themes/default/modules/dimmer.variables +51 -0
  179. data/assets/stylesheets/semantic_ui/themes/default/modules/dropdown.overrides +57 -0
  180. data/assets/stylesheets/semantic_ui/themes/default/modules/dropdown.variables +237 -0
  181. data/assets/stylesheets/semantic_ui/themes/default/modules/modal.overrides +3 -0
  182. data/assets/stylesheets/semantic_ui/themes/default/modules/modal.variables +147 -0
  183. data/assets/stylesheets/semantic_ui/themes/default/modules/nag.overrides +3 -0
  184. data/assets/stylesheets/semantic_ui/themes/default/modules/nag.variables +74 -0
  185. data/assets/stylesheets/semantic_ui/themes/default/modules/popup.overrides +3 -0
  186. data/assets/stylesheets/semantic_ui/themes/default/modules/popup.variables +95 -0
  187. data/assets/stylesheets/semantic_ui/themes/default/modules/progress.overrides +3 -0
  188. data/assets/stylesheets/semantic_ui/themes/default/modules/progress.variables +99 -0
  189. data/assets/stylesheets/semantic_ui/themes/default/modules/rating.overrides +69 -0
  190. data/assets/stylesheets/semantic_ui/themes/default/modules/rating.variables +65 -0
  191. data/assets/stylesheets/semantic_ui/themes/default/modules/search.overrides +3 -0
  192. data/assets/stylesheets/semantic_ui/themes/default/modules/search.variables +140 -0
  193. data/assets/stylesheets/semantic_ui/themes/default/modules/shape.overrides +3 -0
  194. data/assets/stylesheets/semantic_ui/themes/default/modules/shape.variables +35 -0
  195. data/assets/stylesheets/semantic_ui/themes/default/modules/sidebar.overrides +3 -0
  196. data/assets/stylesheets/semantic_ui/themes/default/modules/sidebar.variables +39 -0
  197. data/assets/stylesheets/semantic_ui/themes/default/modules/sticky.overrides +3 -0
  198. data/assets/stylesheets/semantic_ui/themes/default/modules/sticky.variables +12 -0
  199. data/assets/stylesheets/semantic_ui/themes/default/modules/tab.overrides +3 -0
  200. data/assets/stylesheets/semantic_ui/themes/default/modules/tab.variables +13 -0
  201. data/assets/stylesheets/semantic_ui/themes/default/modules/transition.overrides +445 -0
  202. data/assets/stylesheets/semantic_ui/themes/default/modules/transition.variables +10 -0
  203. data/assets/stylesheets/semantic_ui/themes/default/modules/video.overrides +3 -0
  204. data/assets/stylesheets/semantic_ui/themes/default/modules/video.variables +16 -0
  205. data/assets/stylesheets/semantic_ui/themes/default/views/ad.overrides +3 -0
  206. data/assets/stylesheets/semantic_ui/themes/default/views/ad.variables +13 -0
  207. data/assets/stylesheets/semantic_ui/themes/default/views/card.overrides +3 -0
  208. data/assets/stylesheets/semantic_ui/themes/default/views/card.variables +185 -0
  209. data/assets/stylesheets/semantic_ui/themes/default/views/comment.overrides +3 -0
  210. data/assets/stylesheets/semantic_ui/themes/default/views/comment.variables +104 -0
  211. data/assets/stylesheets/semantic_ui/themes/default/views/feed.overrides +3 -0
  212. data/assets/stylesheets/semantic_ui/themes/default/views/feed.variables +149 -0
  213. data/assets/stylesheets/semantic_ui/themes/default/views/item.overrides +3 -0
  214. data/assets/stylesheets/semantic_ui/themes/default/views/item.variables +152 -0
  215. data/assets/stylesheets/semantic_ui/themes/default/views/statistic.overrides +3 -0
  216. data/assets/stylesheets/semantic_ui/themes/default/views/statistic.variables +97 -0
  217. data/assets/stylesheets/semantic_ui/themes/duo/elements/loader.overrides +3 -0
  218. data/assets/stylesheets/semantic_ui/themes/duo/elements/loader.variables +6 -0
  219. data/assets/stylesheets/semantic_ui/themes/fixed-width/collections/grid.overrides +3 -0
  220. data/assets/stylesheets/semantic_ui/themes/fixed-width/collections/grid.variables +25 -0
  221. data/assets/stylesheets/semantic_ui/themes/fixed-width/modules/modal.overrides +3 -0
  222. data/assets/stylesheets/semantic_ui/themes/fixed-width/modules/modal.variables +37 -0
  223. data/assets/stylesheets/semantic_ui/themes/flat/collections/form.overrides +24 -0
  224. data/assets/stylesheets/semantic_ui/themes/flat/collections/form.variables +74 -0
  225. data/assets/stylesheets/semantic_ui/themes/flat/globals/site.overrides +3 -0
  226. data/assets/stylesheets/semantic_ui/themes/flat/globals/site.variables +106 -0
  227. data/assets/stylesheets/semantic_ui/themes/github/collections/form.overrides +16 -0
  228. data/assets/stylesheets/semantic_ui/themes/github/collections/form.variables +40 -0
  229. data/assets/stylesheets/semantic_ui/themes/github/collections/menu.overrides +7 -0
  230. data/assets/stylesheets/semantic_ui/themes/github/collections/menu.variables +66 -0
  231. data/assets/stylesheets/semantic_ui/themes/github/collections/message.overrides +11 -0
  232. data/assets/stylesheets/semantic_ui/themes/github/collections/message.variables +29 -0
  233. data/assets/stylesheets/semantic_ui/themes/github/elements/button.overrides +4 -0
  234. data/assets/stylesheets/semantic_ui/themes/github/elements/button.variables +77 -0
  235. data/assets/stylesheets/semantic_ui/themes/github/elements/segment.overrides +3 -0
  236. data/assets/stylesheets/semantic_ui/themes/github/elements/segment.variables +41 -0
  237. data/assets/stylesheets/semantic_ui/themes/github/elements/step.overrides +26 -0
  238. data/assets/stylesheets/semantic_ui/themes/github/elements/step.variables +20 -0
  239. data/assets/stylesheets/semantic_ui/themes/gmail/collections/message.overrides +0 -0
  240. data/assets/stylesheets/semantic_ui/themes/gmail/collections/message.variables +15 -0
  241. data/assets/stylesheets/semantic_ui/themes/material/elements/button.overrides +23 -0
  242. data/assets/stylesheets/semantic_ui/themes/material/elements/button.variables +87 -0
  243. data/assets/stylesheets/semantic_ui/themes/material/elements/header.overrides +15 -0
  244. data/assets/stylesheets/semantic_ui/themes/material/elements/header.variables +21 -0
  245. data/assets/stylesheets/semantic_ui/themes/material/globals/site.overrides +0 -0
  246. data/assets/stylesheets/semantic_ui/themes/material/globals/site.variables +119 -0
  247. data/assets/stylesheets/semantic_ui/themes/material/modules/modal.overrides +6 -0
  248. data/assets/stylesheets/semantic_ui/themes/material/modules/modal.variables +15 -0
  249. data/assets/stylesheets/semantic_ui/themes/pulsar/elements/loader.overrides +70 -0
  250. data/assets/stylesheets/semantic_ui/themes/pulsar/elements/loader.variables +7 -0
  251. data/assets/stylesheets/semantic_ui/themes/raised/elements/button.overrides +3 -0
  252. data/assets/stylesheets/semantic_ui/themes/raised/elements/button.variables +26 -0
  253. data/assets/stylesheets/semantic_ui/themes/resetcss/globals/reset.overrides +52 -0
  254. data/assets/stylesheets/semantic_ui/themes/resetcss/globals/reset.variables +3 -0
  255. data/assets/stylesheets/semantic_ui/themes/round/elements/button.overrides +0 -0
  256. data/assets/stylesheets/semantic_ui/themes/round/elements/button.variables +138 -0
  257. data/assets/stylesheets/semantic_ui/themes/striped/modules/progress.overrides +29 -0
  258. data/assets/stylesheets/semantic_ui/themes/striped/modules/progress.variables +3 -0
  259. data/assets/stylesheets/semantic_ui/themes/timeline/views/feed.overrides +35 -0
  260. data/assets/stylesheets/semantic_ui/themes/timeline/views/feed.variables +40 -0
  261. data/assets/stylesheets/semantic_ui/themes/twitter/elements/button.overrides +13 -0
  262. data/assets/stylesheets/semantic_ui/themes/twitter/elements/button.variables +45 -0
  263. data/less-rails-semantic_ui.gemspec +28 -0
  264. data/lib/generators/semantic_ui/install/install_generator.rb +20 -0
  265. data/lib/generators/semantic_ui/install/templates/config/collections/breadcrumb.overrides +3 -0
  266. data/lib/generators/semantic_ui/install/templates/config/collections/breadcrumb.variables +3 -0
  267. data/lib/generators/semantic_ui/install/templates/config/collections/form.overrides +3 -0
  268. data/lib/generators/semantic_ui/install/templates/config/collections/form.variables +3 -0
  269. data/lib/generators/semantic_ui/install/templates/config/collections/grid.overrides +3 -0
  270. data/lib/generators/semantic_ui/install/templates/config/collections/grid.variables +3 -0
  271. data/lib/generators/semantic_ui/install/templates/config/collections/menu.overrides +3 -0
  272. data/lib/generators/semantic_ui/install/templates/config/collections/menu.variables +3 -0
  273. data/lib/generators/semantic_ui/install/templates/config/collections/message.overrides +3 -0
  274. data/lib/generators/semantic_ui/install/templates/config/collections/message.variables +3 -0
  275. data/lib/generators/semantic_ui/install/templates/config/collections/table.overrides +3 -0
  276. data/lib/generators/semantic_ui/install/templates/config/collections/table.variables +3 -0
  277. data/lib/generators/semantic_ui/install/templates/config/elements/button.overrides +3 -0
  278. data/lib/generators/semantic_ui/install/templates/config/elements/button.variables +3 -0
  279. data/lib/generators/semantic_ui/install/templates/config/elements/divider.overrides +3 -0
  280. data/lib/generators/semantic_ui/install/templates/config/elements/divider.variables +3 -0
  281. data/lib/generators/semantic_ui/install/templates/config/elements/flag.overrides +3 -0
  282. data/lib/generators/semantic_ui/install/templates/config/elements/flag.variables +3 -0
  283. data/lib/generators/semantic_ui/install/templates/config/elements/header.overrides +3 -0
  284. data/lib/generators/semantic_ui/install/templates/config/elements/header.variables +3 -0
  285. data/lib/generators/semantic_ui/install/templates/config/elements/icon.overrides +3 -0
  286. data/lib/generators/semantic_ui/install/templates/config/elements/icon.variables +3 -0
  287. data/lib/generators/semantic_ui/install/templates/config/elements/image.overrides +3 -0
  288. data/lib/generators/semantic_ui/install/templates/config/elements/image.variables +3 -0
  289. data/lib/generators/semantic_ui/install/templates/config/elements/input.overrides +3 -0
  290. data/lib/generators/semantic_ui/install/templates/config/elements/input.variables +3 -0
  291. data/lib/generators/semantic_ui/install/templates/config/elements/label.overrides +3 -0
  292. data/lib/generators/semantic_ui/install/templates/config/elements/label.variables +3 -0
  293. data/lib/generators/semantic_ui/install/templates/config/elements/list.overrides +3 -0
  294. data/lib/generators/semantic_ui/install/templates/config/elements/list.variables +3 -0
  295. data/lib/generators/semantic_ui/install/templates/config/elements/loader.overrides +3 -0
  296. data/lib/generators/semantic_ui/install/templates/config/elements/loader.variables +3 -0
  297. data/lib/generators/semantic_ui/install/templates/config/elements/rail.overrides +3 -0
  298. data/lib/generators/semantic_ui/install/templates/config/elements/rail.variables +3 -0
  299. data/lib/generators/semantic_ui/install/templates/config/elements/reveal.overrides +3 -0
  300. data/lib/generators/semantic_ui/install/templates/config/elements/reveal.variables +3 -0
  301. data/lib/generators/semantic_ui/install/templates/config/elements/segment.overrides +3 -0
  302. data/lib/generators/semantic_ui/install/templates/config/elements/segment.variables +3 -0
  303. data/lib/generators/semantic_ui/install/templates/config/elements/step.overrides +3 -0
  304. data/lib/generators/semantic_ui/install/templates/config/elements/step.variables +3 -0
  305. data/lib/generators/semantic_ui/install/templates/config/globals/reset.overrides +3 -0
  306. data/lib/generators/semantic_ui/install/templates/config/globals/reset.variables +3 -0
  307. data/lib/generators/semantic_ui/install/templates/config/globals/site.overrides +3 -0
  308. data/lib/generators/semantic_ui/install/templates/config/globals/site.variables +3 -0
  309. data/lib/generators/semantic_ui/install/templates/config/modules/accordion.overrides +3 -0
  310. data/lib/generators/semantic_ui/install/templates/config/modules/accordion.variables +3 -0
  311. data/lib/generators/semantic_ui/install/templates/config/modules/chatroom.overrides +3 -0
  312. data/lib/generators/semantic_ui/install/templates/config/modules/chatroom.variables +3 -0
  313. data/lib/generators/semantic_ui/install/templates/config/modules/checkbox.overrides +3 -0
  314. data/lib/generators/semantic_ui/install/templates/config/modules/checkbox.variables +3 -0
  315. data/lib/generators/semantic_ui/install/templates/config/modules/dimmer.overrides +3 -0
  316. data/lib/generators/semantic_ui/install/templates/config/modules/dimmer.variables +3 -0
  317. data/lib/generators/semantic_ui/install/templates/config/modules/dropdown.overrides +3 -0
  318. data/lib/generators/semantic_ui/install/templates/config/modules/dropdown.variables +3 -0
  319. data/lib/generators/semantic_ui/install/templates/config/modules/modal.overrides +3 -0
  320. data/lib/generators/semantic_ui/install/templates/config/modules/modal.variables +3 -0
  321. data/lib/generators/semantic_ui/install/templates/config/modules/nag.overrides +3 -0
  322. data/lib/generators/semantic_ui/install/templates/config/modules/nag.variables +3 -0
  323. data/lib/generators/semantic_ui/install/templates/config/modules/popup.overrides +3 -0
  324. data/lib/generators/semantic_ui/install/templates/config/modules/popup.variables +3 -0
  325. data/lib/generators/semantic_ui/install/templates/config/modules/progress.overrides +3 -0
  326. data/lib/generators/semantic_ui/install/templates/config/modules/progress.variables +3 -0
  327. data/lib/generators/semantic_ui/install/templates/config/modules/rating.overrides +3 -0
  328. data/lib/generators/semantic_ui/install/templates/config/modules/rating.variables +3 -0
  329. data/lib/generators/semantic_ui/install/templates/config/modules/search.overrides +3 -0
  330. data/lib/generators/semantic_ui/install/templates/config/modules/search.variables +3 -0
  331. data/lib/generators/semantic_ui/install/templates/config/modules/shape.overrides +3 -0
  332. data/lib/generators/semantic_ui/install/templates/config/modules/shape.variables +3 -0
  333. data/lib/generators/semantic_ui/install/templates/config/modules/sidebar.overrides +3 -0
  334. data/lib/generators/semantic_ui/install/templates/config/modules/sidebar.variables +3 -0
  335. data/lib/generators/semantic_ui/install/templates/config/modules/sticky.overrides +3 -0
  336. data/lib/generators/semantic_ui/install/templates/config/modules/sticky.variables +3 -0
  337. data/lib/generators/semantic_ui/install/templates/config/modules/tab.overrides +3 -0
  338. data/lib/generators/semantic_ui/install/templates/config/modules/tab.variables +3 -0
  339. data/lib/generators/semantic_ui/install/templates/config/modules/transition.overrides +3 -0
  340. data/lib/generators/semantic_ui/install/templates/config/modules/transition.variables +3 -0
  341. data/lib/generators/semantic_ui/install/templates/config/modules/video.overrides +3 -0
  342. data/lib/generators/semantic_ui/install/templates/config/modules/video.variables +0 -0
  343. data/lib/generators/semantic_ui/install/templates/config/views/ad.overrides +3 -0
  344. data/lib/generators/semantic_ui/install/templates/config/views/ad.variables +3 -0
  345. data/lib/generators/semantic_ui/install/templates/config/views/card.overrides +3 -0
  346. data/lib/generators/semantic_ui/install/templates/config/views/card.variables +3 -0
  347. data/lib/generators/semantic_ui/install/templates/config/views/comment.overrides +3 -0
  348. data/lib/generators/semantic_ui/install/templates/config/views/comment.variables +3 -0
  349. data/lib/generators/semantic_ui/install/templates/config/views/feed.overrides +3 -0
  350. data/lib/generators/semantic_ui/install/templates/config/views/feed.variables +3 -0
  351. data/lib/generators/semantic_ui/install/templates/config/views/item.overrides +3 -0
  352. data/lib/generators/semantic_ui/install/templates/config/views/item.variables +3 -0
  353. data/lib/generators/semantic_ui/install/templates/config/views/statistic.overrides +3 -0
  354. data/lib/generators/semantic_ui/install/templates/config/views/statistic.variables +3 -0
  355. data/lib/generators/semantic_ui/install/templates/semantic_ui.css +52 -0
  356. data/lib/generators/semantic_ui/install/templates/semantic_ui.js +27 -0
  357. data/lib/generators/semantic_ui/install/templates/theme.config +87 -0
  358. data/lib/less/rails/semantic_ui.rb +2 -0
  359. data/lib/less/rails/semantic_ui/engine.rb +18 -0
  360. data/spec/dummy_app/.gitignore +1 -0
  361. data/spec/dummy_app/app/assets/javascripts/application.js +1 -0
  362. data/spec/dummy_app/app/assets/stylesheets/application.css +4 -0
  363. data/spec/dummy_app/init.rb +20 -0
  364. data/spec/generators/install_generator_spec.rb +80 -0
  365. data/spec/spec_helper.rb +1 -0
  366. data/tasks/templates/semantic_ui.css.erb +11 -0
  367. data/tasks/templates/semantic_ui.js.erb +7 -0
  368. data/tasks/update.rake +245 -0
  369. metadata +547 -0
@@ -0,0 +1,3 @@
1
+ /*******************************
2
+ Theme Overrides
3
+ *******************************/
@@ -0,0 +1,260 @@
1
+ /*******************************
2
+ Button
3
+ *******************************/
4
+
5
+ /*-------------------
6
+ Element
7
+ --------------------*/
8
+
9
+ @verticalMargin: 0em;
10
+ @horizontalMargin: 0.25em;
11
+
12
+ /* Style */
13
+ @backgroundColor: #E0E0E0;
14
+ @backgroundImage: none;
15
+ @verticalPadding: 0.8em;
16
+ @horizontalPadding: 1.5em;
17
+
18
+ /* Text */
19
+ @textTransform: none;
20
+ @tapColor: transparent;
21
+ @fontFamily: @pageFont;
22
+ @fontWeight: bold;
23
+ @textColor: rgba(0, 0, 0, 0.6);
24
+ @textShadow: none;
25
+ @invertedTextShadow: none;
26
+ @borderRadius: @defaultBorderRadius;
27
+ @verticalAlign: baseline;
28
+
29
+ /* Internal Shadow */
30
+ @shadowDistance: 0em;
31
+ @shadowOffset: (@shadowDistance / 2);
32
+ @shadowBoxShadow: 0px -@shadowDistance 0px 0px @borderColor inset;
33
+
34
+ /* Box Shadow */
35
+ @borderBoxShadowColor: transparent;
36
+ @borderBoxShadowWidth: 1px;
37
+ @borderBoxShadow: 0px 0px 0px @borderBoxShadowWidth @borderBoxShadowColor inset;
38
+ @boxShadow:
39
+ @borderBoxShadow,
40
+ @shadowBoxShadow
41
+ ;
42
+
43
+ /* Icon */
44
+ @iconOpacity: 0.8;
45
+ @iconDistance: 0.4em;
46
+ @iconColor: '';
47
+ @iconTransition: opacity @transitionDuration @transitionEasing;
48
+ @iconVerticalAlign: baseline;
49
+
50
+ @iconMargin: 0em @iconDistance 0em -(@iconDistance / 2);
51
+ @rightIconMargin: 0em -(@iconDistance / 2) 0em @iconDistance;
52
+
53
+ /* Loader */
54
+ @loaderSize: 1.2857em;
55
+ @loaderOffset: -(@loaderSize / 2);
56
+ @loaderMargin: @loaderOffset 0em 0em @loaderOffset;
57
+ @invertedLoaderFillColor: rgba(0, 0, 0, 0.15);
58
+
59
+ @transition:
60
+ opacity 0.1s @transitionEasing,
61
+ background-color 0.1s @transitionEasing,
62
+ color 0.1s @transitionEasing,
63
+ box-shadow 0.1s @transitionEasing,
64
+ background 0.1s @transitionEasing
65
+ ;
66
+
67
+ /*-------------------
68
+ Group
69
+ --------------------*/
70
+
71
+ @groupBoxShadow: none;
72
+ @groupButtonBoxShadow: @boxShadow;
73
+ @verticalBoxShadow: none;
74
+ @groupButtonOffset: 0px 0px 0px 0px;
75
+ @verticalGroupOffset: 0px 0px 0px 0px;
76
+
77
+ /*-------------------
78
+ States
79
+ --------------------*/
80
+
81
+ /* Hovered */
82
+ @hoverBackgroundColor: #E8E8E8;
83
+ @hoverBackgroundImage: none;
84
+ @hoverBoxShadow: '';
85
+ @hoverColor: @hoveredTextColor;
86
+ @iconHoverOpacity: 0.85;
87
+
88
+ /* Focused */
89
+ @focusBackgroundColor: '';
90
+ @focusBackgroundImage: '';
91
+ @focusBoxShadow:
92
+ @borderBoxShadow,
93
+ 0px 0px 1px rgba(81, 167, 232, 0.8) inset,
94
+ 0px 0px 3px 2px rgba(81, 167, 232, 0.8)
95
+ ;
96
+ @focusColor: @hoveredTextColor;
97
+ @iconFocusOpacity: 0.85;
98
+
99
+ /* Pressed Down */
100
+ @downBackgroundColor: #CCCCCC;
101
+ @downBackgroundImage: '';
102
+ @downPressedShadow: 0px 1px 4px 0px @borderColor inset !important;
103
+ @downBoxShadow:
104
+ @borderBoxShadow,
105
+ @downPressedShadow
106
+ ;
107
+ @downColor: @pressedTextColor;
108
+
109
+ /* Active */
110
+ @activeBackgroundColor: #D0D0D0;
111
+ @activeBackgroundImage: none;
112
+ @activeColor: @selectedTextColor;
113
+ @activeBoxShadow: @borderBoxShadow;
114
+
115
+ /* Active + Hovered */
116
+ @activeHoverBackgroundColor: @activeBackgroundColor;
117
+ @activeHoverBackgroundImage: none;
118
+ @activeHoverColor: @activeColor;
119
+ @activeHoverBoxShadow: @activeBoxShadow;
120
+
121
+ /* Loading */
122
+ @loadingBackground: @offWhite;
123
+
124
+ /*-------------------
125
+ Types
126
+ --------------------*/
127
+
128
+ /* Or */
129
+ @orText: 'or';
130
+
131
+ @orGap: 0.3em;
132
+ @orHeight: (@verticalPadding * 2) + 1em;
133
+
134
+ @orCircleDistanceToEdge: (@verticalPadding);
135
+ @orCircleSize: @orHeight - @orCircleDistanceToEdge;
136
+ @orLineHeight: (@orCircleSize - 0.2em);
137
+ @orBoxShadow: @borderBoxShadow;
138
+
139
+ @orVerticalOffset: -(@orCircleSize / 2);
140
+ @orHorizontalOffset: -(@orCircleSize / 2);
141
+
142
+ @orBackgroundColor: @white;
143
+ @orTextShadow: @invertedTextShadow;
144
+ @orTextStyle: normal;
145
+ @orTextWeight: bold;
146
+ @orTextColor: @lightTextColor;
147
+
148
+
149
+ @orSpacerHeight: @verticalPadding;
150
+ @orSpacerColor: transparent;
151
+
152
+ /* Icon */
153
+ @iconButtonOpacity: 0.9;
154
+
155
+ /* Labeled Icon */
156
+ @labeledIconWidth: 1em + (@verticalPadding * 2);
157
+ @labeledIconBackgroundColor: rgba(0, 0, 0, 0.05);
158
+ @labeledIconPadding: (@horizontalPadding + @labeledIconWidth);
159
+ @labeledIconBorder: transparent;
160
+ @labeledIconColor: '';
161
+
162
+ @labeledIconLeftShadow: -1px 0px 0px 0px @labeledIconBorder inset;
163
+ @labeledIconRightShadow: 1px 0px 0px 0px @labeledIconBorder inset;
164
+
165
+ /* Inverted */
166
+ @invertedBorderSize: 2px;
167
+ @invertedTextColor: @white;
168
+ @invertedTextHoverColor: @hoverColor;
169
+ @invertedGroupButtonOffset: 0px 0px 0px -(@invertedBorderSize);
170
+ @invertedVerticalGroupButtonOffset: 0px 0px -(@invertedBorderSize) 0px;
171
+
172
+ /* Basic */
173
+ @basicBorderRadius: @borderRadius;
174
+ @basicBorderSize: 1px;
175
+ @basicTextColor: @textColor;
176
+ @basicColoredBorderSize: 2px;
177
+
178
+ @basicBackground: transparent;
179
+ @basicFontWeight: normal;
180
+ @basicBoxShadow: 0px 0px 0px @basicBorderSize @borderColor inset;
181
+ @iconOffset: 0.05em;
182
+ @basicLoadingColor: @offWhite;
183
+ @basicTextTransform: none;
184
+
185
+ /* Basic Hover */
186
+ @basicHoverBackground: #FAFAFA;
187
+ @basicHoverTextColor: @hoveredTextColor;
188
+ @basicHoverBoxShadow:
189
+ 0px 0px 0px @basicBorderSize @borderColor inset,
190
+ 0px 0px 0px 0px @borderColor inset
191
+ ;
192
+ /* Basic Down */
193
+ @basicDownBackground: #F8F8F8;
194
+ @basicDownTextColor: @pressedTextColor;
195
+ @basicDownBoxShadow:
196
+ 0px 0px 0px @basicBorderSize rgba(0, 0, 0, 0.15) inset,
197
+ 0px 1px 4px 0px @borderColor inset
198
+ ;
199
+ /* Basic Active */
200
+ @basicActiveBackground: @transparentBlack;
201
+ @basicActiveBoxShadow: '';
202
+ @basicActiveTextColor: @selectedTextColor;
203
+
204
+ /* Basic Inverted */
205
+ @basicInvertedBackground: transparent;
206
+ @basicInvertedHoverBackground: transparent;
207
+ @basicInvertedDownBackground: @transparentWhite;
208
+ @basicInvertedActiveBackground: @transparentWhite;
209
+
210
+ @basicInvertedBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 0.5) inset;
211
+ @basicInvertedHoverBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 1) inset;
212
+ @basicInvertedDownBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 0.9) inset;
213
+ @basicInvertedActiveBoxShadow: 0px 0px 0px @invertedBorderSize rgba(255, 255, 255, 0.7) inset;
214
+
215
+ @basicInvertedColor: @darkWhite;
216
+ @basicInvertedHoverColor: @darkWhiteHover;
217
+ @basicInvertedDownColor: @darkWhiteActive;
218
+ @basicInvertedActiveColor: @invertedTextColor;
219
+
220
+
221
+ /* Basic Group */
222
+ @basicGroupBorder: 1px solid @borderColor;
223
+ @basicGroupBoxShadow: 0px 0px 0px 1px @borderColor;
224
+
225
+ /*-------------------
226
+ Variations
227
+ --------------------*/
228
+
229
+ /* Colors */
230
+ @coloredBackgroundImage: none;
231
+ @coloredBoxShadow: @shadowBoxShadow;
232
+
233
+ /* Ordinality */
234
+ @primaryBackgroundImage: @coloredBackgroundImage;
235
+ @primaryTextColor: @invertedTextColor;
236
+ @primaryTextShadow: @invertedTextShadow;
237
+ @primaryBoxShadow: @coloredBoxShadow;
238
+
239
+ @secondaryBackgroundImage: @coloredBackgroundImage;
240
+ @secondaryTextColor: @invertedTextColor;
241
+ @secondaryTextShadow: @invertedTextShadow;
242
+ @secondaryBoxShadow: @coloredBoxShadow;
243
+
244
+ /* Compact */
245
+ @compactVerticalPadding: (@verticalPadding * 0.75);
246
+ @compactHorizontalPadding: (@horizontalPadding * 0.75);
247
+
248
+ /* Attached */
249
+ @attachedOffset: -1px;
250
+ @attachedBoxShadow: 0px 0px 0px 1px @borderColor;
251
+ @attachedHorizontalPadding: 0.75em;
252
+
253
+ /* Floated */
254
+ @floatedMargin: 0.25em;
255
+
256
+ /* Animated */
257
+ @animationDuration: 0.3s;
258
+ @animationEasing: ease;
259
+ @fadeScaleHigh: 1.5;
260
+ @fadeScaleLow: 0.75;
@@ -0,0 +1,3 @@
1
+ /*******************************
2
+ Theme Overrides
3
+ *******************************/
@@ -0,0 +1,54 @@
1
+ /*******************************
2
+ Divider
3
+ *******************************/
4
+
5
+ /*-------------------
6
+ Element
7
+ --------------------*/
8
+
9
+ @margin: 1rem 0rem;
10
+
11
+ @highlightWidth: 1px;
12
+ @highlightColor: rgba(255, 255, 255, 0.2);
13
+
14
+ @shadowWidth: 1px;
15
+ @shadowColor: rgba(0, 0, 0, 0.1);
16
+
17
+ /* Text */
18
+ @letterSpacing: 0.05em;
19
+ @fontWeight: bold;
20
+ @color: @darkTextColor;
21
+ @textTransform: uppercase;
22
+
23
+ /*-------------------
24
+ Coupling
25
+ --------------------*/
26
+
27
+ /* Icon */
28
+ @dividerIconSize: 1rem;
29
+ @dividerIconMargin: 0rem;
30
+
31
+
32
+ /*******************************
33
+ Variations
34
+ *******************************/
35
+
36
+ /* Horizontal / Vertical */
37
+ @horizontalMargin: '';
38
+ @horizontalDividerMargin: 1em;
39
+ @horizontalRulerOffset: ~"calc(-50% - "(@horizontalDividerMargin)~")";
40
+
41
+ @verticalDividerMargin: 1rem;
42
+ @verticalDividerHeight: ~"calc(100% - "(@verticalDividerMargin)~")";
43
+
44
+ /* Inverted */
45
+ @invertedTextColor: @white;
46
+ @invertedHighlightColor: rgba(255, 255, 255, 0.15);
47
+ @invertedShadowColor: rgba(0, 0, 0, 0.15);
48
+
49
+ /* Section */
50
+ @sectionMargin: 2rem;
51
+
52
+
53
+ /* Sizes */
54
+ @medium: 1rem;
@@ -0,0 +1,979 @@
1
+ /* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
2
+
3
+ /*******************************
4
+ Theme Overrides
5
+ *******************************/
6
+
7
+ i.flag.ad:before,
8
+ i.flag.andorra:before {
9
+ background-position: 0px 0px;
10
+ }
11
+ i.flag.ae:before,
12
+ i.flag.united.arab.emirates:before,
13
+ i.flag.uae:before {
14
+ background-position: 0px -26px;
15
+ }
16
+ i.flag.af:before,
17
+ i.flag.afghanistan:before {
18
+ background-position: 0px -52px;
19
+ }
20
+ i.flag.ag:before,
21
+ i.flag.antigua:before {
22
+ background-position: 0px -78px;
23
+ }
24
+ i.flag.ai:before,
25
+ i.flag.anguilla:before {
26
+ background-position: 0px -104px;
27
+ }
28
+ i.flag.al:before,
29
+ i.flag.albania:before {
30
+ background-position: 0px -130px;
31
+ }
32
+ i.flag.am:before,
33
+ i.flag.armenia:before {
34
+ background-position: 0px -156px;
35
+ }
36
+ i.flag.an:before,
37
+ i.flag.netherlands.antilles:before {
38
+ background-position: 0px -182px;
39
+ }
40
+ i.flag.ao:before,
41
+ i.flag.angola:before {
42
+ background-position: 0px -208px;
43
+ }
44
+ i.flag.ar:before,
45
+ i.flag.argentina:before {
46
+ background-position: 0px -234px;
47
+ }
48
+ i.flag.as:before,
49
+ i.flag.american.samoa:before {
50
+ background-position: 0px -260px;
51
+ }
52
+ i.flag.at:before,
53
+ i.flag.austria:before {
54
+ background-position: 0px -286px;
55
+ }
56
+ i.flag.au:before,
57
+ i.flag.australia:before {
58
+ background-position: 0px -312px;
59
+ }
60
+ i.flag.aw:before,
61
+ i.flag.aruba:before {
62
+ background-position: 0px -338px;
63
+ }
64
+ i.flag.ax:before,
65
+ i.flag.aland.islands:before {
66
+ background-position: 0px -364px;
67
+ }
68
+ i.flag.az:before,
69
+ i.flag.azerbaijan:before {
70
+ background-position: 0px -390px;
71
+ }
72
+ i.flag.ba:before,
73
+ i.flag.bosnia:before {
74
+ background-position: 0px -416px;
75
+ }
76
+ i.flag.bb:before,
77
+ i.flag.barbados:before {
78
+ background-position: 0px -442px;
79
+ }
80
+ i.flag.bd:before,
81
+ i.flag.bangladesh:before {
82
+ background-position: 0px -468px;
83
+ }
84
+ i.flag.be:before,
85
+ i.flag.belgium:before {
86
+ background-position: 0px -494px;
87
+ }
88
+ i.flag.bf:before,
89
+ i.flag.burkina.faso:before {
90
+ background-position: 0px -520px;
91
+ }
92
+ i.flag.bg:before,
93
+ i.flag.bulgaria:before {
94
+ background-position: 0px -546px;
95
+ }
96
+ i.flag.bh:before,
97
+ i.flag.bahrain:before {
98
+ background-position: 0px -572px;
99
+ }
100
+ i.flag.bi:before,
101
+ i.flag.burundi:before {
102
+ background-position: 0px -598px;
103
+ }
104
+ i.flag.bj:before,
105
+ i.flag.benin:before {
106
+ background-position: 0px -624px;
107
+ }
108
+ i.flag.bm:before,
109
+ i.flag.bermuda:before {
110
+ background-position: 0px -650px;
111
+ }
112
+ i.flag.bn:before,
113
+ i.flag.brunei:before {
114
+ background-position: 0px -676px;
115
+ }
116
+ i.flag.bo:before,
117
+ i.flag.bolivia:before {
118
+ background-position: 0px -702px;
119
+ }
120
+ i.flag.br:before,
121
+ i.flag.brazil:before {
122
+ background-position: 0px -728px;
123
+ }
124
+ i.flag.bs:before,
125
+ i.flag.bahamas:before {
126
+ background-position: 0px -754px;
127
+ }
128
+ i.flag.bt:before,
129
+ i.flag.bhutan:before {
130
+ background-position: 0px -780px;
131
+ }
132
+ i.flag.bv:before,
133
+ i.flag.bouvet.island:before {
134
+ background-position: 0px -806px;
135
+ }
136
+ i.flag.bw:before,
137
+ i.flag.botswana:before {
138
+ background-position: 0px -832px;
139
+ }
140
+ i.flag.by:before,
141
+ i.flag.belarus:before {
142
+ background-position: 0px -858px;
143
+ }
144
+ i.flag.bz:before,
145
+ i.flag.belize:before {
146
+ background-position: 0px -884px;
147
+ }
148
+ i.flag.ca:before,
149
+ i.flag.canada:before {
150
+ background-position: 0px -910px;
151
+ }
152
+ i.flag.cc:before,
153
+ i.flag.cocos.islands:before {
154
+ background-position: 0px -962px;
155
+ }
156
+ i.flag.cd:before,
157
+ i.flag.congo:before {
158
+ background-position: 0px -988px;
159
+ }
160
+ i.flag.cf:before,
161
+ i.flag.central.african.republic:before {
162
+ background-position: 0px -1014px;
163
+ }
164
+ i.flag.cg:before,
165
+ i.flag.congo.brazzaville:before {
166
+ background-position: 0px -1040px;
167
+ }
168
+ i.flag.ch:before,
169
+ i.flag.switzerland:before {
170
+ background-position: 0px -1066px;
171
+ }
172
+ i.flag.ci:before,
173
+ i.flag.cote.divoire:before {
174
+ background-position: 0px -1092px;
175
+ }
176
+ i.flag.ck:before,
177
+ i.flag.cook.islands:before {
178
+ background-position: 0px -1118px;
179
+ }
180
+ i.flag.cl:before,
181
+ i.flag.chile:before {
182
+ background-position: 0px -1144px;
183
+ }
184
+ i.flag.cm:before,
185
+ i.flag.cameroon:before {
186
+ background-position: 0px -1170px;
187
+ }
188
+ i.flag.cn:before,
189
+ i.flag.china:before {
190
+ background-position: 0px -1196px;
191
+ }
192
+ i.flag.co:before,
193
+ i.flag.colombia:before {
194
+ background-position: 0px -1222px;
195
+ }
196
+ i.flag.cr:before,
197
+ i.flag.costa.rica:before {
198
+ background-position: 0px -1248px;
199
+ }
200
+ i.flag.cs:before,
201
+ i.flag.serbia:before {
202
+ background-position: 0px -1274px;
203
+ }
204
+ i.flag.cu:before,
205
+ i.flag.cuba:before {
206
+ background-position: 0px -1300px;
207
+ }
208
+ i.flag.cv:before,
209
+ i.flag.cape.verde:before {
210
+ background-position: 0px -1326px;
211
+ }
212
+ i.flag.cx:before,
213
+ i.flag.christmas.island:before {
214
+ background-position: 0px -1352px;
215
+ }
216
+ i.flag.cy:before,
217
+ i.flag.cyprus:before {
218
+ background-position: 0px -1378px;
219
+ }
220
+ i.flag.cz:before,
221
+ i.flag.czech.republic:before {
222
+ background-position: 0px -1404px;
223
+ }
224
+ i.flag.de:before,
225
+ i.flag.germany:before {
226
+ background-position: 0px -1430px;
227
+ }
228
+ i.flag.dj:before,
229
+ i.flag.djibouti:before {
230
+ background-position: 0px -1456px;
231
+ }
232
+ i.flag.dk:before,
233
+ i.flag.denmark:before {
234
+ background-position: 0px -1482px;
235
+ }
236
+ i.flag.dm:before,
237
+ i.flag.dominica:before {
238
+ background-position: 0px -1508px;
239
+ }
240
+ i.flag.do:before,
241
+ i.flag.dominican.republic:before {
242
+ background-position: 0px -1534px;
243
+ }
244
+ i.flag.dz:before,
245
+ i.flag.algeria:before {
246
+ background-position: 0px -1560px;
247
+ }
248
+ i.flag.ec:before,
249
+ i.flag.ecuador:before {
250
+ background-position: 0px -1586px;
251
+ }
252
+ i.flag.ee:before,
253
+ i.flag.estonia:before {
254
+ background-position: 0px -1612px;
255
+ }
256
+ i.flag.eg:before,
257
+ i.flag.egypt:before {
258
+ background-position: 0px -1638px;
259
+ }
260
+ i.flag.eh:before,
261
+ i.flag.western.sahara:before {
262
+ background-position: 0px -1664px;
263
+ }
264
+ i.flag.er:before,
265
+ i.flag.eritrea:before {
266
+ background-position: 0px -1716px;
267
+ }
268
+ i.flag.es:before,
269
+ i.flag.spain:before {
270
+ background-position: 0px -1742px;
271
+ }
272
+ i.flag.et:before,
273
+ i.flag.ethiopia:before {
274
+ background-position: 0px -1768px;
275
+ }
276
+ i.flag.eu:before,
277
+ i.flag.european.union:before {
278
+ background-position: 0px -1794px;
279
+ }
280
+ i.flag.fi:before,
281
+ i.flag.finland:before {
282
+ background-position: 0px -1846px;
283
+ }
284
+ i.flag.fj:before,
285
+ i.flag.fiji:before {
286
+ background-position: 0px -1872px;
287
+ }
288
+ i.flag.fk:before,
289
+ i.flag.falkland.islands:before {
290
+ background-position: 0px -1898px;
291
+ }
292
+ i.flag.fm:before,
293
+ i.flag.micronesia:before {
294
+ background-position: 0px -1924px;
295
+ }
296
+ i.flag.fo:before,
297
+ i.flag.faroe.islands:before {
298
+ background-position: 0px -1950px;
299
+ }
300
+ i.flag.fr:before,
301
+ i.flag.france:before {
302
+ background-position: 0px -1976px;
303
+ }
304
+ i.flag.ga:before,
305
+ i.flag.gabon:before {
306
+ background-position: -36px 0px;
307
+ }
308
+ i.flag.gb:before,
309
+ i.flag.england:before,
310
+ i.flag.united.kingdom:before {
311
+ background-position: -36px -26px;
312
+ }
313
+ i.flag.gd:before,
314
+ i.flag.grenada:before {
315
+ background-position: -36px -52px;
316
+ }
317
+ i.flag.ge:before,
318
+ i.flag.georgia:before {
319
+ background-position: -36px -78px;
320
+ }
321
+ i.flag.gf:before,
322
+ i.flag.french.guiana:before {
323
+ background-position: -36px -104px;
324
+ }
325
+ i.flag.gh:before,
326
+ i.flag.ghana:before {
327
+ background-position: -36px -130px;
328
+ }
329
+ i.flag.gi:before,
330
+ i.flag.gibraltar:before {
331
+ background-position: -36px -156px;
332
+ }
333
+ i.flag.gl:before,
334
+ i.flag.greenland:before {
335
+ background-position: -36px -182px;
336
+ }
337
+ i.flag.gm:before,
338
+ i.flag.gambia:before {
339
+ background-position: -36px -208px;
340
+ }
341
+ i.flag.gn:before,
342
+ i.flag.guinea:before {
343
+ background-position: -36px -234px;
344
+ }
345
+ i.flag.gp:before,
346
+ i.flag.guadeloupe:before {
347
+ background-position: -36px -260px;
348
+ }
349
+ i.flag.gq:before,
350
+ i.flag.equatorial.guinea:before {
351
+ background-position: -36px -286px;
352
+ }
353
+ i.flag.gr:before,
354
+ i.flag.greece:before {
355
+ background-position: -36px -312px;
356
+ }
357
+ i.flag.gs:before,
358
+ i.flag.sandwich.islands:before {
359
+ background-position: -36px -338px;
360
+ }
361
+ i.flag.gt:before,
362
+ i.flag.guatemala:before {
363
+ background-position: -36px -364px;
364
+ }
365
+ i.flag.gu:before,
366
+ i.flag.guam:before {
367
+ background-position: -36px -390px;
368
+ }
369
+ i.flag.gw:before,
370
+ i.flag.guinea-bissau:before {
371
+ background-position: -36px -416px;
372
+ }
373
+ i.flag.gy:before,
374
+ i.flag.guyana:before {
375
+ background-position: -36px -442px;
376
+ }
377
+ i.flag.hk:before,
378
+ i.flag.hong.kong:before {
379
+ background-position: -36px -468px;
380
+ }
381
+ i.flag.hm:before,
382
+ i.flag.heard.island:before {
383
+ background-position: -36px -494px;
384
+ }
385
+ i.flag.hn:before,
386
+ i.flag.honduras:before {
387
+ background-position: -36px -520px;
388
+ }
389
+ i.flag.hr:before,
390
+ i.flag.croatia:before {
391
+ background-position: -36px -546px;
392
+ }
393
+ i.flag.ht:before,
394
+ i.flag.haiti:before {
395
+ background-position: -36px -572px;
396
+ }
397
+ i.flag.hu:before,
398
+ i.flag.hungary:before {
399
+ background-position: -36px -598px;
400
+ }
401
+ i.flag.id:before,
402
+ i.flag.indonesia:before {
403
+ background-position: -36px -624px;
404
+ }
405
+ i.flag.ie:before,
406
+ i.flag.ireland:before {
407
+ background-position: -36px -650px;
408
+ }
409
+ i.flag.il:before,
410
+ i.flag.israel:before {
411
+ background-position: -36px -676px;
412
+ }
413
+ i.flag.in:before,
414
+ i.flag.india:before {
415
+ background-position: -36px -702px;
416
+ }
417
+ i.flag.io:before,
418
+ i.flag.indian.ocean.territory:before {
419
+ background-position: -36px -728px;
420
+ }
421
+ i.flag.iq:before,
422
+ i.flag.iraq:before {
423
+ background-position: -36px -754px;
424
+ }
425
+ i.flag.ir:before,
426
+ i.flag.iran:before {
427
+ background-position: -36px -780px;
428
+ }
429
+ i.flag.is:before,
430
+ i.flag.iceland:before {
431
+ background-position: -36px -806px;
432
+ }
433
+ i.flag.it:before,
434
+ i.flag.italy:before {
435
+ background-position: -36px -832px;
436
+ }
437
+ i.flag.jm:before,
438
+ i.flag.jamaica:before {
439
+ background-position: -36px -858px;
440
+ }
441
+ i.flag.jo:before,
442
+ i.flag.jordan:before {
443
+ background-position: -36px -884px;
444
+ }
445
+ i.flag.jp:before,
446
+ i.flag.japan:before {
447
+ background-position: -36px -910px;
448
+ }
449
+ i.flag.ke:before,
450
+ i.flag.kenya:before {
451
+ background-position: -36px -936px;
452
+ }
453
+ i.flag.kg:before,
454
+ i.flag.kyrgyzstan:before {
455
+ background-position: -36px -962px;
456
+ }
457
+ i.flag.kh:before,
458
+ i.flag.cambodia:before {
459
+ background-position: -36px -988px;
460
+ }
461
+ i.flag.ki:before,
462
+ i.flag.kiribati:before {
463
+ background-position: -36px -1014px;
464
+ }
465
+ i.flag.km:before,
466
+ i.flag.comoros:before {
467
+ background-position: -36px -1040px;
468
+ }
469
+ i.flag.kn:before,
470
+ i.flag.saint.kitts.and.nevis:before {
471
+ background-position: -36px -1066px;
472
+ }
473
+ i.flag.kp:before,
474
+ i.flag.north.korea:before {
475
+ background-position: -36px -1092px;
476
+ }
477
+ i.flag.kr:before,
478
+ i.flag.south.korea:before {
479
+ background-position: -36px -1118px;
480
+ }
481
+ i.flag.kw:before,
482
+ i.flag.kuwait:before {
483
+ background-position: -36px -1144px;
484
+ }
485
+ i.flag.ky:before,
486
+ i.flag.cayman.islands:before {
487
+ background-position: -36px -1170px;
488
+ }
489
+ i.flag.kz:before,
490
+ i.flag.kazakhstan:before {
491
+ background-position: -36px -1196px;
492
+ }
493
+ i.flag.la:before,
494
+ i.flag.laos:before {
495
+ background-position: -36px -1222px;
496
+ }
497
+ i.flag.lb:before,
498
+ i.flag.lebanon:before {
499
+ background-position: -36px -1248px;
500
+ }
501
+ i.flag.lc:before,
502
+ i.flag.saint.lucia:before {
503
+ background-position: -36px -1274px;
504
+ }
505
+ i.flag.li:before,
506
+ i.flag.liechtenstein:before {
507
+ background-position: -36px -1300px;
508
+ }
509
+ i.flag.lk:before,
510
+ i.flag.sri.lanka:before {
511
+ background-position: -36px -1326px;
512
+ }
513
+ i.flag.lr:before,
514
+ i.flag.liberia:before {
515
+ background-position: -36px -1352px;
516
+ }
517
+ i.flag.ls:before,
518
+ i.flag.lesotho:before {
519
+ background-position: -36px -1378px;
520
+ }
521
+ i.flag.lt:before,
522
+ i.flag.lithuania:before {
523
+ background-position: -36px -1404px;
524
+ }
525
+ i.flag.lu:before,
526
+ i.flag.luxembourg:before {
527
+ background-position: -36px -1430px;
528
+ }
529
+ i.flag.lv:before,
530
+ i.flag.latvia:before {
531
+ background-position: -36px -1456px;
532
+ }
533
+ i.flag.ly:before,
534
+ i.flag.libya:before {
535
+ background-position: -36px -1482px;
536
+ }
537
+ i.flag.ma:before,
538
+ i.flag.morocco:before {
539
+ background-position: -36px -1508px;
540
+ }
541
+ i.flag.mc:before,
542
+ i.flag.monaco:before {
543
+ background-position: -36px -1534px;
544
+ }
545
+ i.flag.md:before,
546
+ i.flag.moldova:before {
547
+ background-position: -36px -1560px;
548
+ }
549
+ i.flag.me:before,
550
+ i.flag.montenegro:before {
551
+ background-position: -36px -1586px;
552
+ }
553
+ i.flag.mg:before,
554
+ i.flag.madagascar:before {
555
+ background-position: -36px -1613px;
556
+ }
557
+ i.flag.mh:before,
558
+ i.flag.marshall.islands:before {
559
+ background-position: -36px -1639px;
560
+ }
561
+ i.flag.mk:before,
562
+ i.flag.macedonia:before {
563
+ background-position: -36px -1665px;
564
+ }
565
+ i.flag.ml:before,
566
+ i.flag.mali:before {
567
+ background-position: -36px -1691px;
568
+ }
569
+ i.flag.mm:before,
570
+ i.flag.myanmar:before,
571
+ i.flag.burma:before {
572
+ background-position: -36px -1717px;
573
+ }
574
+ i.flag.mn:before,
575
+ i.flag.mongolia:before {
576
+ background-position: -36px -1743px;
577
+ }
578
+ i.flag.mo:before,
579
+ i.flag.macau:before {
580
+ background-position: -36px -1769px;
581
+ }
582
+ i.flag.mp:before,
583
+ i.flag.northern.mariana.islands:before {
584
+ background-position: -36px -1795px;
585
+ }
586
+ i.flag.mq:before,
587
+ i.flag.martinique:before {
588
+ background-position: -36px -1821px;
589
+ }
590
+ i.flag.mr:before,
591
+ i.flag.mauritania:before {
592
+ background-position: -36px -1847px;
593
+ }
594
+ i.flag.ms:before,
595
+ i.flag.montserrat:before {
596
+ background-position: -36px -1873px;
597
+ }
598
+ i.flag.mt:before,
599
+ i.flag.malta:before {
600
+ background-position: -36px -1899px;
601
+ }
602
+ i.flag.mu:before,
603
+ i.flag.mauritius:before {
604
+ background-position: -36px -1925px;
605
+ }
606
+ i.flag.mv:before,
607
+ i.flag.maldives:before {
608
+ background-position: -36px -1951px;
609
+ }
610
+ i.flag.mw:before,
611
+ i.flag.malawi:before {
612
+ background-position: -36px -1977px;
613
+ }
614
+ i.flag.mx:before,
615
+ i.flag.mexico:before {
616
+ background-position: -72px 0px;
617
+ }
618
+ i.flag.my:before,
619
+ i.flag.malaysia:before {
620
+ background-position: -72px -26px;
621
+ }
622
+ i.flag.mz:before,
623
+ i.flag.mozambique:before {
624
+ background-position: -72px -52px;
625
+ }
626
+ i.flag.na:before,
627
+ i.flag.namibia:before {
628
+ background-position: -72px -78px;
629
+ }
630
+ i.flag.nc:before,
631
+ i.flag.new.caledonia:before {
632
+ background-position: -72px -104px;
633
+ }
634
+ i.flag.ne:before,
635
+ i.flag.niger:before {
636
+ background-position: -72px -130px;
637
+ }
638
+ i.flag.nf:before,
639
+ i.flag.norfolk.island:before {
640
+ background-position: -72px -156px;
641
+ }
642
+ i.flag.ng:before,
643
+ i.flag.nigeria:before {
644
+ background-position: -72px -182px;
645
+ }
646
+ i.flag.ni:before,
647
+ i.flag.nicaragua:before {
648
+ background-position: -72px -208px;
649
+ }
650
+ i.flag.nl:before,
651
+ i.flag.netherlands:before {
652
+ background-position: -72px -234px;
653
+ }
654
+ i.flag.no:before,
655
+ i.flag.norway:before {
656
+ background-position: -72px -260px;
657
+ }
658
+ i.flag.np:before,
659
+ i.flag.nepal:before {
660
+ background-position: -72px -286px;
661
+ }
662
+ i.flag.nr:before,
663
+ i.flag.nauru:before {
664
+ background-position: -72px -312px;
665
+ }
666
+ i.flag.nu:before,
667
+ i.flag.niue:before {
668
+ background-position: -72px -338px;
669
+ }
670
+ i.flag.nz:before,
671
+ i.flag.new.zealand:before {
672
+ background-position: -72px -364px;
673
+ }
674
+ i.flag.om:before,
675
+ i.flag.oman:before {
676
+ background-position: -72px -390px;
677
+ }
678
+ i.flag.pa:before,
679
+ i.flag.panama:before {
680
+ background-position: -72px -416px;
681
+ }
682
+ i.flag.pe:before,
683
+ i.flag.peru:before {
684
+ background-position: -72px -442px;
685
+ }
686
+ i.flag.pf:before,
687
+ i.flag.french.polynesia:before {
688
+ background-position: -72px -468px;
689
+ }
690
+ i.flag.pg:before,
691
+ i.flag.new.guinea:before {
692
+ background-position: -72px -494px;
693
+ }
694
+ i.flag.ph:before,
695
+ i.flag.philippines:before {
696
+ background-position: -72px -520px;
697
+ }
698
+ i.flag.pk:before,
699
+ i.flag.pakistan:before {
700
+ background-position: -72px -546px;
701
+ }
702
+ i.flag.pl:before,
703
+ i.flag.poland:before {
704
+ background-position: -72px -572px;
705
+ }
706
+ i.flag.pm:before,
707
+ i.flag.saint.pierre:before {
708
+ background-position: -72px -598px;
709
+ }
710
+ i.flag.pn:before,
711
+ i.flag.pitcairn.islands:before {
712
+ background-position: -72px -624px;
713
+ }
714
+ i.flag.pr:before,
715
+ i.flag.puerto.rico:before {
716
+ background-position: -72px -650px;
717
+ }
718
+ i.flag.ps:before,
719
+ i.flag.palestine:before {
720
+ background-position: -72px -676px;
721
+ }
722
+ i.flag.pt:before,
723
+ i.flag.portugal:before {
724
+ background-position: -72px -702px;
725
+ }
726
+ i.flag.pw:before,
727
+ i.flag.palau:before {
728
+ background-position: -72px -728px;
729
+ }
730
+ i.flag.py:before,
731
+ i.flag.paraguay:before {
732
+ background-position: -72px -754px;
733
+ }
734
+ i.flag.qa:before,
735
+ i.flag.qatar:before {
736
+ background-position: -72px -780px;
737
+ }
738
+ i.flag.re:before,
739
+ i.flag.reunion:before {
740
+ background-position: -72px -806px;
741
+ }
742
+ i.flag.ro:before,
743
+ i.flag.romania:before {
744
+ background-position: -72px -832px;
745
+ }
746
+ i.flag.rs:before,
747
+ i.flag.serbia:before {
748
+ background-position: -72px -858px;
749
+ }
750
+ i.flag.ru:before,
751
+ i.flag.russia:before {
752
+ background-position: -72px -884px;
753
+ }
754
+ i.flag.rw:before,
755
+ i.flag.rwanda:before {
756
+ background-position: -72px -910px;
757
+ }
758
+ i.flag.sa:before,
759
+ i.flag.saudi.arabia:before {
760
+ background-position: -72px -936px;
761
+ }
762
+ i.flag.sb:before,
763
+ i.flag.solomon.islands:before {
764
+ background-position: -72px -962px;
765
+ }
766
+ i.flag.sc:before,
767
+ i.flag.seychelles:before {
768
+ background-position: -72px -988px;
769
+ }
770
+ i.flag.sd:before,
771
+ i.flag.sudan:before {
772
+ background-position: -72px -1040px;
773
+ }
774
+ i.flag.se:before,
775
+ i.flag.sweden:before {
776
+ background-position: -72px -1066px;
777
+ }
778
+ i.flag.sg:before,
779
+ i.flag.singapore:before {
780
+ background-position: -72px -1092px;
781
+ }
782
+ i.flag.sh:before,
783
+ i.flag.saint.helena:before {
784
+ background-position: -72px -1118px;
785
+ }
786
+ i.flag.si:before,
787
+ i.flag.slovenia:before {
788
+ background-position: -72px -1144px;
789
+ }
790
+ i.flag.sj:before,
791
+ i.flag.svalbard:before,
792
+ i.flag.jan.mayen:before {
793
+ background-position: -72px -1170px;
794
+ }
795
+ i.flag.sk:before,
796
+ i.flag.slovakia:before {
797
+ background-position: -72px -1196px;
798
+ }
799
+ i.flag.sl:before,
800
+ i.flag.sierra.leone:before {
801
+ background-position: -72px -1222px;
802
+ }
803
+ i.flag.sm:before,
804
+ i.flag.san.marino:before {
805
+ background-position: -72px -1248px;
806
+ }
807
+ i.flag.sn:before,
808
+ i.flag.senegal:before {
809
+ background-position: -72px -1274px;
810
+ }
811
+ i.flag.so:before,
812
+ i.flag.somalia:before {
813
+ background-position: -72px -1300px;
814
+ }
815
+ i.flag.sr:before,
816
+ i.flag.suriname:before {
817
+ background-position: -72px -1326px;
818
+ }
819
+ i.flag.st:before,
820
+ i.flag.sao.tome:before {
821
+ background-position: -72px -1352px;
822
+ }
823
+ i.flag.sv:before,
824
+ i.flag.el.salvador:before {
825
+ background-position: -72px -1378px;
826
+ }
827
+ i.flag.sy:before,
828
+ i.flag.syria:before {
829
+ background-position: -72px -1404px;
830
+ }
831
+ i.flag.sz:before,
832
+ i.flag.swaziland:before {
833
+ background-position: -72px -1430px;
834
+ }
835
+ i.flag.tc:before,
836
+ i.flag.caicos.islands:before {
837
+ background-position: -72px -1456px;
838
+ }
839
+ i.flag.td:before,
840
+ i.flag.chad:before {
841
+ background-position: -72px -1482px;
842
+ }
843
+ i.flag.tf:before,
844
+ i.flag.french.territories:before {
845
+ background-position: -72px -1508px;
846
+ }
847
+ i.flag.tg:before,
848
+ i.flag.togo:before {
849
+ background-position: -72px -1534px;
850
+ }
851
+ i.flag.th:before,
852
+ i.flag.thailand:before {
853
+ background-position: -72px -1560px;
854
+ }
855
+ i.flag.tj:before,
856
+ i.flag.tajikistan:before {
857
+ background-position: -72px -1586px;
858
+ }
859
+ i.flag.tk:before,
860
+ i.flag.tokelau:before {
861
+ background-position: -72px -1612px;
862
+ }
863
+ i.flag.tl:before,
864
+ i.flag.timorleste:before {
865
+ background-position: -72px -1638px;
866
+ }
867
+ i.flag.tm:before,
868
+ i.flag.turkmenistan:before {
869
+ background-position: -72px -1664px;
870
+ }
871
+ i.flag.tn:before,
872
+ i.flag.tunisia:before {
873
+ background-position: -72px -1690px;
874
+ }
875
+ i.flag.to:before,
876
+ i.flag.tonga:before {
877
+ background-position: -72px -1716px;
878
+ }
879
+ i.flag.tr:before,
880
+ i.flag.turkey:before {
881
+ background-position: -72px -1742px;
882
+ }
883
+ i.flag.tt:before,
884
+ i.flag.trinidad:before {
885
+ background-position: -72px -1768px;
886
+ }
887
+ i.flag.tv:before,
888
+ i.flag.tuvalu:before {
889
+ background-position: -72px -1794px;
890
+ }
891
+ i.flag.tw:before,
892
+ i.flag.taiwan:before {
893
+ background-position: -72px -1820px;
894
+ }
895
+ i.flag.tz:before,
896
+ i.flag.tanzania:before {
897
+ background-position: -72px -1846px;
898
+ }
899
+ i.flag.ua:before,
900
+ i.flag.ukraine:before {
901
+ background-position: -72px -1872px;
902
+ }
903
+ i.flag.ug:before,
904
+ i.flag.uganda:before {
905
+ background-position: -72px -1898px;
906
+ }
907
+ i.flag.um:before,
908
+ i.flag.us.minor.islands:before {
909
+ background-position: -72px -1924px;
910
+ }
911
+ i.flag.us:before,
912
+ i.flag.america:before,
913
+ i.flag.united.states:before {
914
+ background-position: -72px -1950px;
915
+ }
916
+ i.flag.uy:before,
917
+ i.flag.uruguay:before {
918
+ background-position: -72px -1976px;
919
+ }
920
+ i.flag.uz:before,
921
+ i.flag.uzbekistan:before {
922
+ background-position: -108px 0px;
923
+ }
924
+ i.flag.va:before,
925
+ i.flag.vatican.city:before {
926
+ background-position: -108px -26px;
927
+ }
928
+ i.flag.vc:before,
929
+ i.flag.saint.vincent:before {
930
+ background-position: -108px -52px;
931
+ }
932
+ i.flag.ve:before,
933
+ i.flag.venezuela:before {
934
+ background-position: -108px -78px;
935
+ }
936
+ i.flag.vg:before,
937
+ i.flag.british.virgin.islands:before {
938
+ background-position: -108px -104px;
939
+ }
940
+ i.flag.vi:before,
941
+ i.flag.us.virgin.islands:before {
942
+ background-position: -108px -130px;
943
+ }
944
+ i.flag.vn:before,
945
+ i.flag.vietnam:before {
946
+ background-position: -108px -156px;
947
+ }
948
+ i.flag.vu:before,
949
+ i.flag.vanuatu:before {
950
+ background-position: -108px -182px;
951
+ }
952
+ i.flag.wf:before,
953
+ i.flag.wallis.and.futuna:before {
954
+ background-position: -108px -234px;
955
+ }
956
+ i.flag.ws:before,
957
+ i.flag.samoa:before {
958
+ background-position: -108px -260px;
959
+ }
960
+ i.flag.ye:before,
961
+ i.flag.yemen:before {
962
+ background-position: -108px -286px;
963
+ }
964
+ i.flag.yt:before,
965
+ i.flag.mayotte:before {
966
+ background-position: -108px -312px;
967
+ }
968
+ i.flag.za:before,
969
+ i.flag.south.africa:before {
970
+ background-position: -108px -338px;
971
+ }
972
+ i.flag.zm:before,
973
+ i.flag.zambia:before {
974
+ background-position: -108px -364px;
975
+ }
976
+ i.flag.zw:before,
977
+ i.flag.zimbabwe:before {
978
+ background-position: -108px -390px;
979
+ }