Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. /*
  2. Typographic quotes in some European languages
  3. ---------------------------------------------
  4. All standard browsers and IE8+.
  5.  
  6. Characters used
  7. ‘ \2018 (6 up)
  8. ’ \2019 (9 up)
  9. ‚ \201a (9 down)
  10. “ \201c (66 up)
  11. ” \201d (99 up)
  12. „ \201e (99 down)
  13. « \00ab
  14. » \00bb
  15. ‹ \2039
  16. › \203a
  17. */
  18.  
  19. q {
  20. // default: cs, sk, de_de, de_at
  21. quotes: '\201e' '\201c' '\201a' '\2018';
  22.  
  23. &:lang(it),
  24. &:lang(es),
  25. &:lang(el) {
  26. quotes: '\00ab' '\00bb' '\201c' '\201d';
  27. }
  28.  
  29. &:lang(ru),
  30. &:lang(uk) {
  31. quotes: '\00ab' '\00bb' '\201e' '\201c';
  32. }
  33.  
  34. &:lang(da),
  35. &:lang(sv) {
  36. quotes: '\201e' '\201c' '\2019' '\2019';
  37. }
  38.  
  39. &:lang(de-CH), // in Switzerland French quotes are prefered in all oficial languages
  40. &:lang(fr) {
  41. quotes: '\00ab' '\00bb' '\2039' '\203a';
  42. }
  43.  
  44. &:lang(en) {
  45. quotes: '\201c' '\201d' '\2018' '\2019';
  46. }
  47.  
  48. &:lang(ro) {
  49. quotes: '\201e' '\201d' '\00ab' '\00bb';
  50. }
  51.  
  52. &:lang(bg) {
  53. quotes: '\201e' '\201c' '\2019' '\2019';
  54. }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement