picocss/scss/layout/_document.scss.map

1 line
2.2 KiB
Text
Raw Normal View History

2022-10-15 17:23:02 +07:00
{"version":3,"sources":["_document.scss"],"names":[],"mappings":"AAAA;;;EAGE;;AAEF,mBAAmB;AACnB,yEAAyE;AACzE,+EAA+E;AAC/E,sBAAsB;;AAEtB,wDAAwD;AACxD,uDAAuD;AACvD;;;EAGE,sBAAsB,EAAE,GAAG;EAC3B,4BAA4B,EAAE,GAAG;AACnC;;AAEA,kEAAkE;AAClE,qEAAqE;AACrE;;EAEE,wBAAwB,EAAE,GAAG;EAC7B,uBAAuB,EAAE,GAAG;AAC9B;;AAEA,yDAAyD;AACzD,yDAAyD;AACzD,mEAAmE;AACnE,0DAA0D;AAC1D,4DAA4D;AAC5D,sEAAsE;AACtE;EACE,wCAAwC,EAAE,GAAG;EAC7C,8BAA8B,EAAE,GAAG;EACnC,sBAAsB,EAAE,GAAG;EAC3B,yCAAyC;EACzC,mBAAmB;EACnB,+BAA+B;EAC/B,2BAA2B;EAC3B,+BAA+B,EAAE,GAAG;EACpC,+BAA+B;EAC/B,kCAAkC;EAClC,yBAAyB,EAAE,GAAG;EAC9B,eAAe,EAAE,GAAG;EACpB,WAAW,EAAE,GAAG;AAClB","file":"_document.scss","sourcesContent":["/**\n * Document\n * Content-box & Responsive typography\n */\n\n// Reboot based on :\n// - normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css\n// - sanitize.css v13.0.0 | CC0 1.0 Universal | github.com/csstools/sanitize.css\n// \n\n// 1. Add border box sizing in all browsers (opinionated)\n// 2. Backgrounds do not repeat by default (opinionated)\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n background-repeat: no-repeat; // 2\n}\n\n// 1. Add text decoration inheritance in all browsers (opinionated)\n// 2. Add vertical alignment inheritance in all browsers (opinionated)\n::before,\n::after {\n text-decoration: inherit; // 1\n vertical-align: inherit; // 2\n}\n\n// 1. Use the default cursor in all browsers (opinionated)\n// 2. Change the line height in all browsers (opinionated)\n// 3. Breaks words to prevent overflow in all browsers (opinionated)\n// 4. Use a 4-space tab width in all browsers (opinionated)\n// 5. Remove the grey highlight on links in iOS (opinionated)\n// 6. Prevent adjustments of font size after orientation changes in iOS\n:where(:root) {\n -webkit-tap-highlight-color: transparent; // 5\n -webkit-text-size-adjust: 100%; // 6\n text-size-adjust: 100%; // 6\n background-color: var(--background-color);\n color: var(--color);\n font-weight: var(--font-weight);\n font-size: var(--font-size);\n line-height: var(--line-height); // 2\n font-family: var(--font-family);\n text-rendering: optimizeLegibility;\n overflow-wrap: break-word; // 3\n cursor: default; // 1\n tab-size: 4; // 4\n}\n"]}