border-radius.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. /* Border Radius */
  2. /* 2px */
  3. .radius-all-2 {
  4. border-radius: 2px !important;
  5. }
  6. .radius-top-left-2 {
  7. border-top-left-radius: 2px !important;
  8. }
  9. .radius-top-right-2 {
  10. border-top-right-radius: 2px !important;
  11. }
  12. .radius-bottom-right-2 {
  13. border-bottom-right-radius: 2px !important;
  14. }
  15. .radius-bottom-left-2 {
  16. border-bottom-left-radius: 2px !important;
  17. }
  18. .radius-top-all-2 {
  19. border-top-left-radius: 2px !important;
  20. border-top-right-radius: 2px !important;
  21. }
  22. .radius-bottom-all-2 {
  23. border-bottom-right-radius: 2px !important;
  24. border-bottom-left-radius: 2px !important;
  25. }
  26. .radius-right-all-2 {
  27. border-top-right-radius: 2px !important;
  28. border-bottom-right-radius: 2px !important;
  29. }
  30. .radius-left-all-2 {
  31. border-top-left-radius: 2px !important;
  32. border-bottom-left-radius: 2px !important;
  33. }
  34. /* 4px */
  35. .radius-all-4 {
  36. border-radius: 4px !important;
  37. }
  38. .radius-top-left-4 {
  39. border-top-left-radius: 4px !important;
  40. }
  41. .radius-top-right-4 {
  42. border-top-right-radius: 4px !important;
  43. }
  44. .radius-bottom-right-4 {
  45. border-bottom-right-radius: 4px !important;
  46. }
  47. .radius-bottom-left-4 {
  48. border-bottom-left-radius: 4px !important;
  49. }
  50. .radius-top-all-4 {
  51. border-top-left-radius: 4px !important;
  52. border-top-right-radius: 4px !important;
  53. }
  54. .radius-bottom-all-4 {
  55. border-bottom-right-radius: 4px !important;
  56. border-bottom-left-radius: 4px !important;
  57. }
  58. .radius-right-all-4 {
  59. border-top-right-radius: 4px !important;
  60. border-bottom-right-radius: 4px !important;
  61. }
  62. .radius-left-all-4 {
  63. border-top-left-radius: 4px !important;
  64. border-bottom-left-radius: 4px !important;
  65. }
  66. /* 6px */
  67. .radius-all-6 {
  68. border-radius: 6px !important;
  69. }
  70. .radius-top-left-6 {
  71. border-top-left-radius: 6px !important;
  72. }
  73. .radius-top-right-6 {
  74. border-top-right-radius: 6px !important;
  75. }
  76. .radius-bottom-right-6 {
  77. border-bottom-right-radius: 6px !important;
  78. }
  79. .radius-bottom-left-6 {
  80. border-bottom-left-radius: 6px !important;
  81. }
  82. .radius-top-all-6 {
  83. border-top-left-radius: 6px !important;
  84. border-top-right-radius: 6px !important;
  85. }
  86. .radius-bottom-all-6 {
  87. border-bottom-right-radius: 6px !important;
  88. border-bottom-left-radius: 6px !important;
  89. }
  90. .radius-right-all-6 {
  91. border-top-right-radius: 6px !important;
  92. border-bottom-right-radius: 6px !important;
  93. }
  94. .radius-left-all-6 {
  95. border-top-left-radius: 6px !important;
  96. border-bottom-left-radius: 6px !important;
  97. }
  98. /* 8px */
  99. .radius-all-8 {
  100. border-radius: 8px !important;
  101. }
  102. .radius-top-left-8 {
  103. border-top-left-radius: 8px !important;
  104. }
  105. .radius-top-right-8 {
  106. border-top-right-radius: 8px !important;
  107. }
  108. .radius-bottom-right-8 {
  109. border-bottom-right-radius: 8px !important;
  110. }
  111. .radius-bottom-left-8 {
  112. border-bottom-left-radius: 8px !important;
  113. }
  114. .radius-top-all-8 {
  115. border-top-left-radius: 8px !important;
  116. border-top-right-radius: 8px !important;
  117. }
  118. .radius-bottom-all-8 {
  119. border-bottom-right-radius: 8px !important;
  120. border-bottom-left-radius: 8px !important;
  121. }
  122. .radius-right-all-8 {
  123. border-top-right-radius: 8px !important;
  124. border-bottom-right-radius: 8px !important;
  125. }
  126. .radius-left-all-8 {
  127. border-top-left-radius: 8px !important;
  128. border-bottom-left-radius: 8px !important;
  129. }
  130. /* 10px */
  131. .radius-all-10 {
  132. border-radius: 10px !important;
  133. }
  134. .radius-top-left-10 {
  135. border-top-left-radius: 10px !important;
  136. }
  137. .radius-top-right-10 {
  138. border-top-right-radius: 10px !important;
  139. }
  140. .radius-bottom-right-10 {
  141. border-bottom-right-radius: 10px !important;
  142. }
  143. .radius-bottom-left-10 {
  144. border-bottom-left-radius: 10px !important;
  145. }
  146. .radius-top-all-10 {
  147. border-top-left-radius: 10px !important;
  148. border-top-right-radius: 10px !important;
  149. }
  150. .radius-bottom-all-10 {
  151. border-bottom-right-radius: 10px !important;
  152. border-bottom-left-radius: 10px !important;
  153. }
  154. .radius-right-all-10 {
  155. border-top-right-radius: 10px !important;
  156. border-bottom-right-radius: 10px !important;
  157. }
  158. .radius-left-all-10 {
  159. border-top-left-radius: 10px !important;
  160. border-bottom-left-radius: 10px !important;
  161. }
  162. /* 100px */
  163. .ra-100,
  164. .radius-all-100 {
  165. border-radius: 100px !important;
  166. }
  167. .radius-top-left-100 {
  168. border-top-left-radius: 100px !important;
  169. }
  170. .radius-top-right-100 {
  171. border-top-right-radius: 100px !important;
  172. }
  173. .radius-bottom-right-100 {
  174. border-bottom-right-radius: 100px !important;
  175. }
  176. .radius-bottom-left-100 {
  177. border-bottom-left-radius: 100px !important;
  178. }
  179. .radius-top-all-100 {
  180. border-top-left-radius: 100px !important;
  181. border-top-right-radius: 100px !important;
  182. }
  183. .radius-bottom-all-100 {
  184. border-bottom-right-radius: 100px !important;
  185. border-bottom-left-radius: 100px !important;
  186. }
  187. .radius-right-all-100 {
  188. border-top-right-radius: 100px !important;
  189. border-bottom-right-radius: 100px !important;
  190. }
  191. .radius-left-all-100 {
  192. border-top-left-radius: 100px !important;
  193. border-bottom-left-radius: 100px !important;
  194. }
  195. /* 0px */
  196. .radius-all-0 {
  197. border-radius: 0 !important;
  198. }
  199. .radius-top-left-0 {
  200. border-top-left-radius: 0 !important;
  201. }
  202. .radius-top-right-0 {
  203. border-top-right-radius: 0 !important;
  204. }
  205. .radius-bottom-right-0 {
  206. border-bottom-right-radius: 0 !important;
  207. }
  208. .radius-bottom-left-0 {
  209. border-bottom-left-radius: 0 !important;
  210. }
  211. .radius-top-all-0 {
  212. border-top-left-radius: 0 !important;
  213. border-top-right-radius: 0 !important;
  214. }
  215. .radius-bottom-all-0 {
  216. border-bottom-right-radius: 0 !important;
  217. border-bottom-left-radius: 0 !important;
  218. }
  219. .radius-right-all-0 {
  220. border-top-right-radius: 0 !important;
  221. border-bottom-right-radius: 0 !important;
  222. }
  223. .radius-left-all-0 {
  224. border-top-left-radius: 0 !important;
  225. border-bottom-left-radius: 0 !important;
  226. }