This commit is contained in:
Max
2024-06-28 01:31:19 +03:00
commit 51cb27927a
10 changed files with 251 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/*
ШАБЛОН использования глобальных переменных:
:root {
--main-text: #e1667c;
--main-color: #8da6cb;
--font-family: "Craftwork Grotesk", sans-serif;
}
*/

View File

@@ -0,0 +1,4 @@
/* Стили для лептопов */
@media only screen and (max-width: 1720px) {
}

View File

@@ -0,0 +1,5 @@
/* Стили для мобильных устройств */
@media only screen and (max-width: 480px) {
}

View File

@@ -0,0 +1,5 @@
/* Стили для планшетов */
@media only screen and (max-width: 1024px) {
}

View File

@@ -0,0 +1,2 @@
/* Стили для ультрашироких экранов */
@media only screen and (min-width: 1720px) {}