_helpers.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //Margin
  2. @for $i from -25 through 25 {
  3. .m-l-#{$i * 5} {
  4. margin-left: #{$i * 5}px;
  5. }
  6. .m-t-#{$i * 5} {
  7. margin-top: #{$i * 5}px;
  8. }
  9. .m-r-#{$i * 5} {
  10. margin-right: #{$i * 5}px;
  11. }
  12. .m-b-#{$i * 5} {
  13. margin-bottom: #{$i * 5}px;
  14. }
  15. }
  16. .margin-0 {
  17. margin: 0;
  18. }
  19. @for $i from 0 through 25 {
  20. .p-l-#{$i * 5} {
  21. padding-left: #{$i * 5}px;
  22. }
  23. .p-t-#{$i * 5} {
  24. padding-top: #{$i * 5}px;
  25. }
  26. .p-r-#{$i * 5} {
  27. padding-right: #{$i * 5}px;
  28. }
  29. .p-b-#{$i * 5} {
  30. padding-bottom: #{$i * 5}px;
  31. }
  32. }
  33. .padding-0 {
  34. padding: 0;
  35. }
  36. @for $i from 5 through 49 {
  37. .font-#{$i + 1} {
  38. font-size: #{$i + 1}px;
  39. }
  40. }
  41. .align-left {
  42. text-align: left;
  43. }
  44. .align-center {
  45. text-align: center;
  46. }
  47. .align-right {
  48. text-align: right;
  49. }
  50. .align-justify {
  51. text-align: justify;
  52. }
  53. .no-resize {
  54. resize: none;
  55. }
  56. .font-bold {
  57. font-weight: bold;
  58. }
  59. .font-italic {
  60. font-style: italic;
  61. }
  62. .font-underline {
  63. text-decoration: underline;
  64. }
  65. .font-line-through {
  66. text-decoration: line-through;
  67. }
  68. .font-overline {
  69. text-decoration: overline;
  70. }
  71. .block-header {
  72. margin-bottom: 15px;
  73. h2 {
  74. margin: 0 !important;
  75. color: #666 !important;
  76. font-weight: normal;
  77. font-size: 16px;
  78. small {
  79. display: block;
  80. font-size: 12px;
  81. margin-top: 8px;
  82. color: #888;
  83. a {
  84. font-weight: bold;
  85. color: #777;
  86. }
  87. }
  88. }
  89. }
  90. @each $key, $val in $colors {
  91. .bg-#{$key} {
  92. background-color: $val !important;
  93. color: #fff;
  94. .content {
  95. .text,
  96. .number {
  97. color: #fff !important;
  98. }
  99. }
  100. }
  101. }
  102. @each $key, $val in $colors {
  103. .col-#{$key} {
  104. color: $val !important;
  105. }
  106. }