Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

88 рядки
1.5 KiB

  1. @import "_breakpoints";
  2. @mixin flex-center () {
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. }
  7. @mixin flex-right () {
  8. display: flex;
  9. justify-content: flex-end;
  10. align-items: flex-end;
  11. }
  12. @mixin flex-left () {
  13. display: flex;
  14. justify-content: flex-start;
  15. align-items: flex-start;
  16. }
  17. @mixin flex-row-baseline {
  18. display: flex;
  19. flex-direction: row;
  20. justify-content: baseline;
  21. }
  22. @mixin flex-column-baseline {
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: baseline;
  26. }
  27. @mixin flex-column-center {
  28. display: flex;
  29. flex-direction: column;
  30. justify-content: center;
  31. align-items: center;
  32. }
  33. @mixin flex-row-center {
  34. display: flex;
  35. flex-direction: row;
  36. justify-content: center;
  37. align-items: center;
  38. }
  39. @mixin container {
  40. width: 75%;
  41. margin-left: 12.5%;
  42. }
  43. @mixin container-sm {
  44. width: 90%;
  45. margin-left: 10%;
  46. box-sizing: border-box;
  47. }
  48. @mixin black-button {
  49. background-color: black;
  50. color: white;
  51. border: none;
  52. padding: 0.4rem 1rem 0.2rem;
  53. width: 6rem;
  54. text-transform: uppercase;
  55. text-align: center;
  56. font-size: 0.8rem;
  57. text-decoration: none;
  58. font-weight: 100;
  59. }
  60. @mixin border-button {
  61. padding: 0.4rem 2rem 0.3rem;
  62. border: 1px solid white;
  63. color: white;
  64. text-decoration: none;
  65. font-size: 0.8rem;
  66. text-transform: uppercase;
  67. }
  68. @mixin side-text {
  69. position: absolute;
  70. rotate: -90deg;
  71. text-transform: uppercase;
  72. font-weight: bolder;
  73. font-size: small;
  74. }