Guest User

Untitled

a guest
Jun 25th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. .d-f {
  2. display: -webkit-box;
  3. display: -ms-flexbox;
  4. display: flex;
  5. }
  6. .d-if {
  7. display: -webkit-inline-box;
  8. display: -ms-inline-flexbox;
  9. display: inline-flex;
  10. }
  11. .d-b {
  12. display: block;
  13. }
  14. .d-i {
  15. display: inline;
  16. }
  17. .d-ib {
  18. display: inline-block;
  19. }
  20.  
  21. .fw-n {
  22. -ms-flex-wrap: nowrap;
  23. flex-wrap: nowrap;
  24. }
  25. .fw-w {
  26. -ms-flex-wrap: wrap;
  27. flex-wrap: wrap;
  28. }
  29.  
  30. .fd-c {
  31. -webkit-box-orient: vertical;
  32. -webkit-box-direction: normal;
  33. -ms-flex-direction: column;
  34. flex-direction: column;
  35. }
  36. .fd-r {
  37. -webkit-box-orient: horizontal;
  38. -webkit-box-direction: normal;
  39. -ms-flex-direction: row;
  40. flex-direction: row;
  41. }
  42.  
  43. .jc-c {
  44. -webkit-box-pack: center;
  45. -ms-flex-pack: center;
  46. justify-content: center;
  47. }
  48. .jc-fs {
  49. -webkit-box-pack: start;
  50. -ms-flex-pack: start;
  51. justify-content: flex-start;
  52. }
  53. .jc-fe {
  54. -webkit-box-pack: end;
  55. -ms-flex-pack: end;
  56. justify-content: flex-end;
  57. }
  58. .jc-sb {
  59. -webkit-box-pack: justify;
  60. -ms-flex-pack: justify;
  61. justify-content: space-between;
  62. }
  63. .jc-sa {
  64. -ms-flex-pack: distribute;
  65. justify-content: space-around;
  66. }
  67. .jc-se {
  68. -webkit-box-pack: space-evenly;
  69. -ms-flex-pack: space-evenly;
  70. justify-content: space-evenly;
  71. }
  72.  
  73. .ai-c {
  74. -webkit-box-align: center;
  75. -ms-flex-align: center;
  76. align-items: center;
  77. }
  78. .ai-fs {
  79. -webkit-box-align: start;
  80. -ms-flex-align: start;
  81. align-items: flex-start;
  82. }
  83. .ai-fe {
  84. -webkit-box-align: end;
  85. -ms-flex-align: end;
  86. align-items: flex-end;
  87. }
  88. .ai-b {
  89. -webkit-box-align: baseline;
  90. -ms-flex-align: baseline;
  91. align-items: baseline;
  92. }
Add Comment
Please, Sign In to add comment