From a85b9d485411308924161b3bfef3ca1fa4c1052d Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Thu, 15 Dec 2022 13:41:47 +0100 Subject: [PATCH] Create README.md --- README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d535187 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Pattern Template 7-1 Lite version with Split Media + +An extraordinarily neat architecture that any Web Designer can understand at a glance. Structure with the help of SASS and media queries. + +``` txt +sass/ +| +|– mobile/ +| |– _header.sass +| |– _footer.sass +| |– pages/ +| | |– _home.sass +| | |– _contact.sass +| | ... +|– desktop/ +| |– _header.sass +| |– _footer.sass +| |– pages/ +| | |– _home.sass +| | |– _contact.sass +| | ... +|– _base.sass +|– _mixins.sass +|– _typography.sass +|– _variables.sass +|– vendors/ +| |– _bootstrap.sass +| |– _jquery-ui.sass +| ... +`– mobile.sass +`– desktop.sass +``` + +# Compile SASS. + +## Install + +``` bash +yarn global add node-sass +``` + +## Run + +``` bash +node-sass --output-style compressed sass/mobile.sass css/mobile.css +node-sass --output-style compressed sass/desktop.sass css/desktop.css +```