Bring some responsive styles, subject to later improvements

This commit is contained in:
2020-12-04 17:38:59 +01:00
parent a9eb304a5c
commit bb09df70f5
15 changed files with 119 additions and 43 deletions

View File

@@ -1,3 +1,14 @@
@primary-color: #0c9696;
@secondary-color: #ffffff;
@text-color: #333;
@sm: 640px;
// => @media (min-width: 640px) { ... }
@md: 768px;
// => @media (min-width: 768px) { ... }
@lg: 1024px;
// => @media (min-width: 1024px) { ... }
@xl: 1280px;
// => @media (min-width: 1280px) { ... }
@2xl: 1536px;
// => @media (min-width: 1536px) { ... }