You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

146 lines
1.7 KiB

  1. .ub
  2. {
  3. display: -webkit-box !important;
  4. display: box !important;
  5. position:relative;
  6. }
  7. .ub-rev
  8. {
  9. -webkit-box-direction:reverse;
  10. box-direction:reverse;
  11. }
  12. .ub-fh
  13. {
  14. width:100%;
  15. }
  16. .ub-fv
  17. {
  18. height:100%;
  19. }
  20. .ub-con
  21. {
  22. position:absolute;
  23. width:100%;
  24. height:100%;
  25. }
  26. .ub-ac
  27. {
  28. -webkit-box-align:center;
  29. box-align:center;
  30. }
  31. .ub-ae
  32. {
  33. -webkit-box-align:end;
  34. box-align:end;
  35. }
  36. .ub-pc
  37. {
  38. -webkit-box-pack:center;
  39. box-pack:center;
  40. }
  41. .ub-pe
  42. {
  43. -webkit-box-pack:end;
  44. box-pack:end;
  45. }
  46. .ub-pj
  47. {
  48. -webkit-box-pack:justify;
  49. box-pack:justify;
  50. }
  51. .ub-ver
  52. {
  53. -webkit-box-orient:vertical;
  54. box-orient:vertical;
  55. }
  56. .ub-f1
  57. {
  58. position:relative;
  59. -webkit-box-flex: 1;
  60. box-flex: 1;
  61. }
  62. .ub-f2
  63. {
  64. position:relative;
  65. -webkit-box-flex: 2;
  66. box-flex: 2;
  67. }
  68. .ub-f3
  69. {
  70. position:relative;
  71. -webkit-box-flex: 3;
  72. box-flex: 3;
  73. }
  74. .ub-f4
  75. {
  76. position:relative;
  77. -webkit-box-flex: 4;
  78. box-flex: 4;
  79. }
  80. .ub-img
  81. {
  82. -webkit-background-size:contain;
  83. background-size:contain;
  84. background-repeat:no-repeat;
  85. background-position:center;
  86. }
  87. .ub-img1
  88. {
  89. -webkit-background-size:cover;
  90. background-size:cover;
  91. background-repeat:no-repeat;
  92. background-position:center;
  93. }
  94. .ub-img2
  95. {
  96. background-repeat:repeat-x;
  97. background-size:auto 100%
  98. }
  99. .ub-img3
  100. {
  101. background-repeat:repeat-y;
  102. background-size:100% auto
  103. }
  104. .ub-img4
  105. {
  106. -webkit-background-size:100% auto;
  107. background-size:100% auto;
  108. background-repeat:no-repeat;
  109. background-position:center;
  110. }
  111. .ub-img5
  112. {
  113. -webkit-background-size:auto 100%;
  114. background-size:auto 100%;
  115. background-repeat:no-repeat;
  116. background-position:center;
  117. }
  118. .ub-img6
  119. {
  120. background-repeat:no-repeat;
  121. background-position:center;
  122. }
  123. .ub-img7
  124. {
  125. -webkit-background-size:100% 100%;
  126. background-size:100% 100%;
  127. background-repeat:no-repeat;
  128. background-position:center;
  129. }