The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

141 lines
2.3 KiB

  1. .public-layout {
  2. .footer {
  3. text-align: left;
  4. padding-top: 20px;
  5. padding-bottom: 60px;
  6. font-size: 12px;
  7. color: lighten($ui-base-color, 34%);
  8. @media screen and (max-width: $no-gap-breakpoint) {
  9. padding-left: 20px;
  10. padding-right: 20px;
  11. }
  12. .grid {
  13. display: grid;
  14. grid-gap: 10px;
  15. grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  16. .column-0 {
  17. grid-column: 1;
  18. grid-row: 1;
  19. min-width: 0;
  20. }
  21. .column-1 {
  22. grid-column: 2;
  23. grid-row: 1;
  24. min-width: 0;
  25. }
  26. .column-2 {
  27. grid-column: 3;
  28. grid-row: 1;
  29. min-width: 0;
  30. text-align: center;
  31. h4 a {
  32. color: lighten($ui-base-color, 34%);
  33. }
  34. }
  35. .column-3 {
  36. grid-column: 4;
  37. grid-row: 1;
  38. min-width: 0;
  39. }
  40. .column-4 {
  41. grid-column: 5;
  42. grid-row: 1;
  43. min-width: 0;
  44. }
  45. @media screen and (max-width: 690px) {
  46. grid-template-columns: 1fr 2fr 1fr;
  47. .column-0,
  48. .column-1 {
  49. grid-column: 1;
  50. }
  51. .column-1 {
  52. grid-row: 2;
  53. }
  54. .column-2 {
  55. grid-column: 2;
  56. }
  57. .column-3,
  58. .column-4 {
  59. grid-column: 3;
  60. }
  61. .column-4 {
  62. grid-row: 2;
  63. }
  64. }
  65. @media screen and (max-width: 600px) {
  66. .column-1 {
  67. display: block;
  68. }
  69. }
  70. @media screen and (max-width: $no-gap-breakpoint) {
  71. .column-0,
  72. .column-1,
  73. .column-3,
  74. .column-4 {
  75. display: none;
  76. }
  77. }
  78. }
  79. h4 {
  80. text-transform: uppercase;
  81. font-weight: 700;
  82. margin-bottom: 8px;
  83. color: $darker-text-color;
  84. a {
  85. color: inherit;
  86. text-decoration: none;
  87. }
  88. }
  89. ul a {
  90. text-decoration: none;
  91. color: lighten($ui-base-color, 34%);
  92. &:hover,
  93. &:active,
  94. &:focus {
  95. text-decoration: underline;
  96. }
  97. }
  98. .brand {
  99. svg {
  100. display: block;
  101. height: 36px;
  102. width: auto;
  103. margin: 0 auto;
  104. path {
  105. fill: lighten($ui-base-color, 34%);
  106. }
  107. }
  108. &:hover,
  109. &:focus,
  110. &:active {
  111. svg path {
  112. fill: lighten($ui-base-color, 38%);
  113. }
  114. }
  115. }
  116. }
  117. }