diff --git a/themes/wpcomsp-project-scaffold/style.css.map b/themes/wpcomsp-project-scaffold/style.css.map index 125a98f..4b38a13 100644 --- a/themes/wpcomsp-project-scaffold/style.css.map +++ b/themes/wpcomsp-project-scaffold/style.css.map @@ -1 +1 @@ -{"version":3,"sources":["assets/sass/base/_theme-details.scss","assets/sass/base/_typography.scss","assets/sass/style.scss","assets/sass/abstracts/_mixins.scss","assets/sass/layout/_page.scss","assets/sass/components/_buttons.scss"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;CAAA;ACEA;EACC,iBAAA;ACgBD;ACKE;EFtBF;IAIE,iBAAA;ECiBA;AACF;;AEtBA;;;EAAA;AAIA;EACC,WAAA;EACA,YAAA;EACA,wBAAA;UAAA,gBAAA;EACA,cAAA;AFyBD;AC1BE;ECHF;IAQE,yBAAA;EFyBA;AACF;AChBE;EClBF;IAaE,yBAAA;EFyBA;AACF;ACLE;EClCF;IAkBE,yBAAA;EFyBA;AACF;;AGlDA;EACC,iBAAA;AHqDD;AGnDC;EACC,0BAAA;AHqDF","file":"style.css","sourcesContent":["/*\nTheme Name: WPCOMSP Project Scaffold Theme\nTheme URI: https://github.com/a8cteam51/team51-project-scaffold\nAuthor: WordPress Special Projects\nAuthor URI: https://wpspecialprojects.com\nDescription: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam et tincidunt metus, eu rutrum sapien.\nTemplate: blockbase\nVersion: 1.0.0\nUpdate URI:\t\t\tfalse\nRequires at least: 6.1\nRequires PHP: 8.1\nLicense: GNU General Public License v3 or later\nLicense URI: http://www.gnu.org/licenses/gpl-3.0.html\nText Domain: wpcomsp-project-scaffold\nDomain Path: /languages\nTags: scaffold\n*/\n","@use \"../abstracts/mixins\" as *;\n\nbody {\n\tline-height: 20px;\n\n\t@include breakpoint-down(medium) {\n\t\tline-height: 16px;\n\t}\n}\n","/*\nTheme Name: WPCOMSP Project Scaffold Theme\nTheme URI: https://github.com/a8cteam51/team51-project-scaffold\nAuthor: WordPress Special Projects\nAuthor URI: https://wpspecialprojects.com\nDescription: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam et tincidunt metus, eu rutrum sapien.\nTemplate: blockbase\nVersion: 1.0.0\nUpdate URI:\t\t\tfalse\nRequires at least: 6.1\nRequires PHP: 8.1\nLicense: GNU General Public License v3 or later\nLicense URI: http://www.gnu.org/licenses/gpl-3.0.html\nText Domain: wpcomsp-project-scaffold\nDomain Path: /languages\nTags: scaffold\n*/\nbody {\n line-height: 20px;\n}\n@media (max-width: 781px) {\n body {\n line-height: 16px;\n }\n}\n\n/**\n * Page\n * - Description of page styles\n */\n.wp-theme-style {\n color: #fff;\n padding: 2px;\n appearance: auto;\n direction: ltr;\n}\n@media (min-width: 960px) {\n .wp-theme-style {\n background-color: #21759b;\n }\n}\n@media (max-width: 781px) {\n .wp-theme-style {\n background-color: #d54e21;\n }\n}\n@media (min-width: 782px) and (max-width: 959px) {\n .wp-theme-style {\n background-color: #7ad03a;\n }\n}\n\nbutton {\n padding: 8px 15px;\n}\nbutton:hover {\n text-decoration: underline;\n}","@use \"variables\" as *;\n@use \"sass:map\";\n\n// Media query \"greater than $breakpoint\".\n@mixin breakpoint-up($breakpoint) {\n\n\t@if map.has-key($breakpoints, $breakpoint) {\n\t\t$breakpoint-value: map.get($breakpoints, $breakpoint);\n\n\t\t@media (min-width: $breakpoint-value) {\n\t\t\t@content;\n\t\t}\n\t} @else {\n\n\t\t@warn \"Undefined Breakpoint: (#{$breakpoint}). Available breakpoints: #{map.keys($breakpoints)}\";\n\t}\n}\n\n// Media query \"less than $breakpoint\".\n@mixin breakpoint-down($breakpoint) {\n\n\t@if map.has-key($breakpoints, $breakpoint) {\n\t\t$breakpoint-value: map.get($breakpoints, $breakpoint);\n\n\t\t@media (max-width: ($breakpoint-value - 1)) {\n\t\t\t@content;\n\t\t}\n\t} @else {\n\n\t\t@warn \"Undefined Breakpoint: (#{$breakpoint}). Available breakpoints: #{map.keys($breakpoints)}\";\n\t}\n}\n\n// Media query \"between $a and $b\".\n@mixin breakpoint-between($a, $b) {\n\n\t@if map.has-key($breakpoints, $a) and map.has-key($breakpoints, $b) {\n\t\t$breakpoint-a: map.get($breakpoints, $a);\n\t\t$breakpoint-b: map.get($breakpoints, $b);\n\n\t\t@media (min-width: $breakpoint-a) and (max-width: ($breakpoint-b - 1)) {\n\t\t\t@content;\n\t\t}\n\t} @else {\n\n\t\t@if (map.has-key($breakpoints, $a) == false) {\n\n\t\t\t@warn \"Undefined Breakpoint: #{$a}. Available breakpoints: #{map.keys($breakpoints)}\";\n\t\t}\n\n\t\t@if (map.has-key($breakpoints, $b) == false) {\n\n\t\t\t@warn \"Undefined Breakpoint: #{$b}. Available breakpoints: #{map.keys($breakpoints)}\";\n\t\t}\n\t}\n}\n","@use \"../abstracts/mixins\" as *;\n\n/**\n * Page\n * - Description of page styles\n */\n.wp-theme-style {\n\tcolor: #fff;\n\tpadding: 2px;\n\tappearance: auto; // Added to test autoprefixer via postcss\n\tdirection: ltr; // Added to test rtlcss\n\n\t// Added to test 'greater than breakpoint' mixin.\n\t@include breakpoint-up(large) {\n\t\tbackground-color: #21759b;\n\t}\n\n\t// Added to test 'less than breakpoint' mixin.\n\t@include breakpoint-down(medium) {\n\t\tbackground-color: #d54e21;\n\t}\n\n\t// Added to test 'between breakpoints' mixin.\n\t@include breakpoint-between(medium, large) {\n\t\tbackground-color: #7ad03a;\n\t}\n}\n","button {\n\tpadding: 8px 15px;\n\n\t&:hover {\n\t\ttext-decoration: underline;\n\t}\n}\n"]} \ No newline at end of file +{"version":3,"sources":["assets/sass/base/_theme-details.scss","assets/sass/base/_typography.scss","assets/sass/style.scss","assets/sass/abstracts/_mixins.scss","assets/sass/layout/_page.scss","assets/sass/components/_buttons.scss"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;CAAA;ACEA;EACC,iBAAA;ACgBD;ACEE;EFnBF;IAIE,iBAAA;ECiBA;AACF;;AEtBA;;;EAAA;AAIA;EACC,WAAA;EACA,YAAA;EACA,wBAAA;UAAA,gBAAA;EACA,cAAA;AFyBD;AC3BE;ECFF;IAQE,yBAAA;EFyBA;AACF;ACnBE;ECfF;IAaE,yBAAA;EFyBA;AACF;ACVE;EC7BF;IAkBE,yBAAA;EFyBA;AACF;;AGlDA;EACC,iBAAA;AHqDD;AGnDC;EACC,0BAAA;AHqDF","file":"style.css","sourcesContent":["/*\nTheme Name: WPCOMSP Project Scaffold Theme\nTheme URI: https://github.com/a8cteam51/team51-project-scaffold\nAuthor: WordPress Special Projects\nAuthor URI: https://wpspecialprojects.com\nDescription: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam et tincidunt metus, eu rutrum sapien.\nTemplate: blockbase\nVersion: 1.0.0\nUpdate URI:\t\t\tfalse\nRequires at least: 6.1\nRequires PHP: 8.1\nLicense: GNU General Public License v3 or later\nLicense URI: http://www.gnu.org/licenses/gpl-3.0.html\nText Domain: wpcomsp-project-scaffold\nDomain Path: /languages\nTags: scaffold\n*/\n","@use \"../abstracts/mixins\" as *;\n\nbody {\n\tline-height: 20px;\n\n\t@include breakpoint-down(medium) {\n\t\tline-height: 16px;\n\t}\n}\n","/*\nTheme Name: WPCOMSP Project Scaffold Theme\nTheme URI: https://github.com/a8cteam51/team51-project-scaffold\nAuthor: WordPress Special Projects\nAuthor URI: https://wpspecialprojects.com\nDescription: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam et tincidunt metus, eu rutrum sapien.\nTemplate: blockbase\nVersion: 1.0.0\nUpdate URI:\t\t\tfalse\nRequires at least: 6.1\nRequires PHP: 8.1\nLicense: GNU General Public License v3 or later\nLicense URI: http://www.gnu.org/licenses/gpl-3.0.html\nText Domain: wpcomsp-project-scaffold\nDomain Path: /languages\nTags: scaffold\n*/\nbody {\n line-height: 20px;\n}\n@media (max-width: 781px) {\n body {\n line-height: 16px;\n }\n}\n\n/**\n * Page\n * - Description of page styles\n */\n.wp-theme-style {\n color: #fff;\n padding: 2px;\n appearance: auto;\n direction: ltr;\n}\n@media (min-width: 960px) {\n .wp-theme-style {\n background-color: #21759b;\n }\n}\n@media (max-width: 781px) {\n .wp-theme-style {\n background-color: #d54e21;\n }\n}\n@media (min-width: 782px) and (max-width: 959px) {\n .wp-theme-style {\n background-color: #7ad03a;\n }\n}\n\nbutton {\n padding: 8px 15px;\n}\nbutton:hover {\n text-decoration: underline;\n}","@use \"variables\" as *;\n@use \"sass:map\";\n\n// Media query \"greater than $breakpoint\".\n@mixin breakpoint-up($breakpoint) {\n\t@if map.has-key($breakpoints, $breakpoint) {\n\t\t$breakpoint-value: map.get($breakpoints, $breakpoint);\n\n\t\t@media (min-width: $breakpoint-value) {\n\t\t\t@content;\n\t\t}\n\t} @else {\n\t\t@warn \"Undefined Breakpoint: (#{$breakpoint}). Available breakpoints: #{map.keys($breakpoints)}\";\n\t}\n}\n\n// Media query \"less than $breakpoint\".\n@mixin breakpoint-down($breakpoint) {\n\t@if map.has-key($breakpoints, $breakpoint) {\n\t\t$breakpoint-value: map.get($breakpoints, $breakpoint);\n\n\t\t@media (max-width: ($breakpoint-value - 1)) {\n\t\t\t@content;\n\t\t}\n\t} @else {\n\t\t@warn \"Undefined Breakpoint: (#{$breakpoint}). Available breakpoints: #{map.keys($breakpoints)}\";\n\t}\n}\n\n// Media query \"between $a and $b\".\n@mixin breakpoint-between($a, $b) {\n\t@if map.has-key($breakpoints, $a) and map.has-key($breakpoints, $b) {\n\t\t$breakpoint-a: map.get($breakpoints, $a);\n\t\t$breakpoint-b: map.get($breakpoints, $b);\n\n\t\t@media (min-width: $breakpoint-a) and (max-width: ($breakpoint-b - 1)) {\n\t\t\t@content;\n\t\t}\n\t} @else {\n\t\t@if (map.has-key($breakpoints, $a) == false) {\n\t\t\t@warn \"Undefined Breakpoint: #{$a}. Available breakpoints: #{map.keys($breakpoints)}\";\n\t\t}\n\t\t@if (map.has-key($breakpoints, $b) == false) {\n\t\t\t@warn \"Undefined Breakpoint: #{$b}. Available breakpoints: #{map.keys($breakpoints)}\";\n\t\t}\n\t}\n}\n","@use \"../abstracts/mixins\" as *;\n\n/**\n * Page\n * - Description of page styles\n */\n.wp-theme-style {\n\tcolor: #fff;\n\tpadding: 2px;\n\tappearance: auto; // Added to test autoprefixer via postcss\n\tdirection: ltr; // Added to test rtlcss\n\n\t// Added to test 'greater than breakpoint' mixin.\n\t@include breakpoint-up(large) {\n\t\tbackground-color: #21759b;\n\t}\n\n\t// Added to test 'less than breakpoint' mixin.\n\t@include breakpoint-down(medium) {\n\t\tbackground-color: #d54e21;\n\t}\n\n\t// Added to test 'between breakpoints' mixin.\n\t@include breakpoint-between(medium, large) {\n\t\tbackground-color: #7ad03a;\n\t}\n}\n","button {\n\tpadding: 8px 15px;\n\n\t&:hover {\n\t\ttext-decoration: underline;\n\t}\n}\n"]} \ No newline at end of file