| /* @author Bilal Cinarli */ | ||
| /** | ||
| * Position related definition | ||
| */ | ||
| /** ------------------------------------------- | ||
| Positions | ||
| ------------------------------------------- **/ | ||
| /** | ||
| * Floats | ||
| */ | ||
| .move-to-start, | ||
| [dir="rtl"] .move-to-end { | ||
| float: left; | ||
| } | ||
| .move-to-end, | ||
| [dir="rtl"] .move-to-start { | ||
| float: right; | ||
| } | ||
| /** | ||
| * Aligns | ||
| * start and end values for text-aligns are direction safe. | ||
| * no need to additional definition for rtl/ltr differences. | ||
| */ | ||
| .align-start { | ||
| // will align to left in ltr | ||
| // will align to right in rtl | ||
| text-align: start; | ||
| } | ||
| .align-end { | ||
| // will align to right in ltr | ||
| // will align to left in rtl | ||
| text-align: end; | ||
| } |
+7
-3
| { | ||
| "name": "Melange", | ||
| "version": "0.3.0", | ||
| "name": "melange", | ||
| "version": "0.3.3", | ||
| "homepage": "https://github.com/bcinarli/melange", | ||
@@ -10,6 +10,10 @@ "authors": [ | ||
| "main": "lib/_melange.scss", | ||
| "devDependencies": { | ||
| "caffeine": ">=0.2.0" | ||
| }, | ||
| "keywords": [ | ||
| "SASS", | ||
| "CSS", | ||
| "CSS framework" | ||
| "CSS", | ||
| "framework" | ||
| ], | ||
@@ -16,0 +20,0 @@ "license": "MIT", |
@@ -26,2 +26,3 @@ /* @author Bilal Cinarli */ | ||
| user-select: none; | ||
| vertical-align: middle; | ||
| white-space: normal; | ||
@@ -28,0 +29,0 @@ |
@@ -10,2 +10,5 @@ /* @author Bilal Cinarli */ | ||
| */ | ||
| html { | ||
| box-sizing: border-box; | ||
| } | ||
@@ -16,5 +19,13 @@ * { | ||
| &:before { | ||
| @include prefixer(box-sizing, border-box); | ||
| box-sizing: inherit; | ||
| } | ||
| } | ||
| /** | ||
| * Overwrite normalize.css's box-sizing definitions | ||
| */ | ||
| hr, | ||
| input[type="search"] { | ||
| box-sizing: inherit; | ||
| } | ||
@@ -21,0 +32,0 @@ /** |
@@ -23,2 +23,8 @@ /* @author Bilal Cinarli */ | ||
| // | ||
| @import "helpers"; | ||
| @import "helpers"; | ||
| // | ||
| // Positions | ||
| // | ||
| @import "positions"; |
@@ -6,5 +6,5 @@ /* @author Bilal Cinarli */ | ||
| ------------------------------------------- **/ | ||
| $numbers: one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen; | ||
| $numbers: one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen !default; | ||
| $ordinals: whole half third quarter fifth sixth seventh eighth ninth tenth eleventh twelfth; | ||
| $ordinals-plural: whole half thirds quarters fifths sixths sevenths eighths ninths tenths elevenths twelfths; | ||
| $ordinals: whole half third quarter fifth sixth seventh eighth ninth tenth eleventh twelfth !default; | ||
| $ordinals-plural: whole half thirds quarters fifths sixths sevenths eighths ninths tenths elevenths twelfths !default; |
+1
-1
| { | ||
| "name": "melange", | ||
| "version": "0.3.2", | ||
| "version": "0.3.3a", | ||
| "description": "A low level SASS based CSS framework for general usage", | ||
@@ -5,0 +5,0 @@ "repository": { |
+1
-1
@@ -1,2 +0,2 @@ | ||
| /*! melange.css | @author Bilal Cinarli | melange.io *//*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*,*:after,*:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,body{width:100%;height:100%;margin:0;padding:0}h1,h2,h3,h4,h5,h6,p,ul,ol,li,table,th,td{margin-top:0;padding:0}.group:after,.row:after,.media:after{content:"";display:table;clear:both}.hide{display:none}fieldset,.form-elements{margin:0;padding:0;border:none;background:none;list-style:none}.column{float:left}.one-whole{width:100%}.one-half{width:50%}.one-thirds,.one-third{width:33.3333333333%}.two-thirds{width:66.6666666667%}.one-quarters,.one-quarter{width:25%}.two-quarters{width:50%}.three-quarters{width:75%}.one-fifths,.one-fifth{width:20%}.two-fifths{width:40%}.three-fifths{width:60%}.four-fifths{width:80%}.one-eighths,.one-eighth{width:12.5%}.two-eighths{width:25%}.three-eighths{width:37.5%}.four-eighths{width:50%}.five-eighths{width:62.5%}.six-eighths{width:75%}.seven-eighths{width:87.5%}.one-tenths,.one-tenth{width:10%}.two-tenths{width:20%}.three-tenths{width:30%}.four-tenths{width:40%}.five-tenths{width:50%}.six-tenths{width:60%}.seven-tenths{width:70%}.eight-tenths{width:80%}.nine-tenths{width:90%}.one-twelfths,.one-twelfth{width:8.3333333333%}.two-twelfths{width:16.6666666667%}.three-twelfths{width:25%}.four-twelfths{width:33.3333333333%}.five-twelfths{width:41.6666666667%}.six-twelfths{width:50%}.seven-twelfths{width:58.3333333333%}.eight-twelfths{width:66.6666666667%}.nine-twelfths{width:75%}.ten-twelfths{width:83.3333333333%}.eleven-twelfths{width:91.6666666667%}.pull{margin-left:-20px}.push{margin-right:-20px}.pull-push{margin-left:-20px;margin-right:-20px}[class*="-column"]{position:relative;float:left;padding:0 20px}[class*="-column"].column-parent{padding:0}[class*="column-reverse"]{float:right}.one-column,.one-columns{width:5.5555555556%}.two-column,.two-columns{width:11.1111111111%}.three-column,.three-columns{width:16.6666666667%}.four-column,.four-columns{width:22.2222222222%}.five-column,.five-columns{width:27.7777777778%}.six-column,.six-columns{width:33.3333333333%}.seven-column,.seven-columns{width:38.8888888889%}.eight-column,.eight-columns{width:44.4444444444%}.nine-column,.nine-columns{width:50%}.ten-column,.ten-columns{width:55.5555555556%}.eleven-column,.eleven-columns{width:61.1111111111%}.twelve-column,.twelve-columns{width:66.6666666667%}.thirteen-column,.thirteen-columns{width:72.2222222222%}.fourteen-column,.fourteen-columns{width:77.7777777778%}.fifteen-column,.fifteen-columns{width:83.3333333333%}.sixteen-column,.sixteen-columns{width:88.8888888889%}.seventeen-column,.seventeen-columns{width:94.4444444444%}.eighteen-column,.eighteen-columns{width:100%}.offset-by-one{margin-left:5.5555555556%}.offset-by-two{margin-left:11.1111111111%}.offset-by-three{margin-left:16.6666666667%}.offset-by-four{margin-left:22.2222222222%}.offset-by-five{margin-left:27.7777777778%}.offset-by-six{margin-left:33.3333333333%}.offset-by-seven{margin-left:38.8888888889%}.offset-by-eight{margin-left:44.4444444444%}.offset-by-nine{margin-left:50%}.offset-by-ten{margin-left:55.5555555556%}.offset-by-eleven{margin-left:61.1111111111%}.offset-by-twelve{margin-left:66.6666666667%}.offset-by-thirteen{margin-left:72.2222222222%}.offset-by-fourteen{margin-left:77.7777777778%}.offset-by-fifteen{margin-left:83.3333333333%}.offset-by-sixteen{margin-left:88.8888888889%}.offset-by-seventeen{margin-left:94.4444444444%}html{font-size:16px}body{font:16px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;color:#222}.form-elements li{position:relative;margin-bottom:1em}legend{display:block;width:100%;margin-bottom:1em}label,.label{position:relative;display:inline-block}label.item-field,.label.item-field{margin-right:1em}label.item-stacked:not(:only-child),.label.item-stacked:not(:only-child){margin-bottom:1em}.item-label,.field-label{position:relative;display:inline-block;cursor:pointer}.item-stacked .item-label,.item-stacked .field-label{display:block}.required .item-label:before,.required .field-label:before{content:"*";position:absolute;left:-10px}.field-help{font-size:.8em;font-style:italic}input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],textarea,.text-field{-webkit-appearance:none;outline:0;padding:5px;border:1px solid #c6c6c6;color:inherit;font-size:1rem;font-weight:normal}input[type="text"]:focus,input[type="text"]:active,input[type="password"]:focus,input[type="password"]:active,input[type="datetime"]:focus,input[type="datetime"]:active,input[type="datetime-local"]:focus,input[type="datetime-local"]:active,input[type="date"]:focus,input[type="date"]:active,input[type="month"]:focus,input[type="month"]:active,input[type="time"]:focus,input[type="time"]:active,input[type="week"]:focus,input[type="week"]:active,input[type="number"]:focus,input[type="number"]:active,input[type="email"]:focus,input[type="email"]:active,input[type="url"]:focus,input[type="url"]:active,input[type="search"]:focus,input[type="search"]:active,input[type="tel"]:focus,input[type="tel"]:active,input[type="color"]:focus,input[type="color"]:active,textarea:focus,textarea:active,.text-field:focus,.text-field:active{border-color:#a6a6a6;background:#fff}input[type="text"][readonly],input[type="text"].readonly,input[type="password"][readonly],input[type="password"].readonly,input[type="datetime"][readonly],input[type="datetime"].readonly,input[type="datetime-local"][readonly],input[type="datetime-local"].readonly,input[type="date"][readonly],input[type="date"].readonly,input[type="month"][readonly],input[type="month"].readonly,input[type="time"][readonly],input[type="time"].readonly,input[type="week"][readonly],input[type="week"].readonly,input[type="number"][readonly],input[type="number"].readonly,input[type="email"][readonly],input[type="email"].readonly,input[type="url"][readonly],input[type="url"].readonly,input[type="search"][readonly],input[type="search"].readonly,input[type="tel"][readonly],input[type="tel"].readonly,input[type="color"][readonly],input[type="color"].readonly,textarea[readonly],textarea.readonly,.text-field[readonly],.text-field.readonly{cursor:default;border-color:#c6c6c6;background-color:#f9f9f9}input[type="text"].item-error,input[type="password"].item-error,input[type="datetime"].item-error,input[type="datetime-local"].item-error,input[type="date"].item-error,input[type="month"].item-error,input[type="time"].item-error,input[type="week"].item-error,input[type="number"].item-error,input[type="email"].item-error,input[type="url"].item-error,input[type="search"].item-error,input[type="tel"].item-error,input[type="color"].item-error,textarea.item-error,.text-field.item-error{border-color:#e87352}input[type="checkbox"],input[type="radio"]{vertical-align:middle}input[type="checkbox"]+.field-label,input[type="checkbox"]+.item-label,input[type="radio"]+.field-label,input[type="radio"]+.item-label{font-weight:normal;margin-left:.25em;vertical-align:middle}textarea{min-height:3em;resize:vertical}[class*="-action"],button,.button{-webkit-appearence:none;display:inline-block;cursor:pointer;padding:0.7em 1em;background:#f9f9f9;color:#222;font-weight:bold;line-height:normal;outline:none;text-decoration:none;text-align:center;user-select:none;white-space:normal}[class*="-action"]:hover,[class*="-action"]:focus,[class*="-action"]:active,button:hover,button:focus,button:active,.button:hover,.button:focus,.button:active{text-decoration:none}[class*="-action"]:disabled,.disabled[class*="-action"],button:disabled,button.disabled,.button:disabled,.button.disabled{cursor:default;background:#f9f9f9}.primary-action{background-color:#009bdc;color:#fff}.secondary-action{background-color:#67af00;color:#fff}.tertiary-action{background-color:#ffa900;color:#fff}.cancel-action{background-color:#e87352;color:#fff}table{width:100%}tfoot td:only-child{text-align:right}th,td{padding:0.5em;text-align:left}a{display:inline-block;padding:2px}nav a{text-decoration:none}nav ul{margin:0;padding:0;list-style:none}ol,ul{list-style-position:outside;padding-left:20px}dl{padding-left:20px}dl dt{font-weight:bold}.media-visual{display:block;float:left;margin-right:1em}.media-text+.media-visual{float:right;margin-right:auto;margin-left:1em} | ||
| /*! melange.css | @author Bilal Cinarli | melange.io *//*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{box-sizing:border-box}*,*:after,*:before{box-sizing:inherit}hr,input[type="search"]{box-sizing:inherit}html,body{width:100%;height:100%;margin:0;padding:0}h1,h2,h3,h4,h5,h6,p,ul,ol,li,table,th,td{margin-top:0;padding:0}.group:after,.row:after,.media:after{content:"";display:table;clear:both}.hide{display:none}fieldset,.form-elements{margin:0;padding:0;border:none;background:none;list-style:none}.column{float:left}.move-to-start,[dir="rtl"] .move-to-end{float:left}.move-to-end,[dir="rtl"] .move-to-start{float:right}.align-start{text-align:start}.align-end{text-align:end}.one-whole{width:100%}.one-half{width:50%}.one-thirds,.one-third{width:33.3333333333%}.two-thirds{width:66.6666666667%}.one-quarters,.one-quarter{width:25%}.two-quarters{width:50%}.three-quarters{width:75%}.one-fifths,.one-fifth{width:20%}.two-fifths{width:40%}.three-fifths{width:60%}.four-fifths{width:80%}.one-eighths,.one-eighth{width:12.5%}.two-eighths{width:25%}.three-eighths{width:37.5%}.four-eighths{width:50%}.five-eighths{width:62.5%}.six-eighths{width:75%}.seven-eighths{width:87.5%}.one-tenths,.one-tenth{width:10%}.two-tenths{width:20%}.three-tenths{width:30%}.four-tenths{width:40%}.five-tenths{width:50%}.six-tenths{width:60%}.seven-tenths{width:70%}.eight-tenths{width:80%}.nine-tenths{width:90%}.one-twelfths,.one-twelfth{width:8.3333333333%}.two-twelfths{width:16.6666666667%}.three-twelfths{width:25%}.four-twelfths{width:33.3333333333%}.five-twelfths{width:41.6666666667%}.six-twelfths{width:50%}.seven-twelfths{width:58.3333333333%}.eight-twelfths{width:66.6666666667%}.nine-twelfths{width:75%}.ten-twelfths{width:83.3333333333%}.eleven-twelfths{width:91.6666666667%}.pull{margin-left:-20px}.push{margin-right:-20px}.pull-push{margin-left:-20px;margin-right:-20px}[class*="-column"]{position:relative;float:left;padding:0 20px}[class*="-column"].column-parent{padding:0}[class*="column-reverse"]{float:right}.one-column,.one-columns{width:5.5555555556%}.two-column,.two-columns{width:11.1111111111%}.three-column,.three-columns{width:16.6666666667%}.four-column,.four-columns{width:22.2222222222%}.five-column,.five-columns{width:27.7777777778%}.six-column,.six-columns{width:33.3333333333%}.seven-column,.seven-columns{width:38.8888888889%}.eight-column,.eight-columns{width:44.4444444444%}.nine-column,.nine-columns{width:50%}.ten-column,.ten-columns{width:55.5555555556%}.eleven-column,.eleven-columns{width:61.1111111111%}.twelve-column,.twelve-columns{width:66.6666666667%}.thirteen-column,.thirteen-columns{width:72.2222222222%}.fourteen-column,.fourteen-columns{width:77.7777777778%}.fifteen-column,.fifteen-columns{width:83.3333333333%}.sixteen-column,.sixteen-columns{width:88.8888888889%}.seventeen-column,.seventeen-columns{width:94.4444444444%}.eighteen-column,.eighteen-columns{width:100%}.offset-by-one{margin-left:5.5555555556%}.offset-by-two{margin-left:11.1111111111%}.offset-by-three{margin-left:16.6666666667%}.offset-by-four{margin-left:22.2222222222%}.offset-by-five{margin-left:27.7777777778%}.offset-by-six{margin-left:33.3333333333%}.offset-by-seven{margin-left:38.8888888889%}.offset-by-eight{margin-left:44.4444444444%}.offset-by-nine{margin-left:50%}.offset-by-ten{margin-left:55.5555555556%}.offset-by-eleven{margin-left:61.1111111111%}.offset-by-twelve{margin-left:66.6666666667%}.offset-by-thirteen{margin-left:72.2222222222%}.offset-by-fourteen{margin-left:77.7777777778%}.offset-by-fifteen{margin-left:83.3333333333%}.offset-by-sixteen{margin-left:88.8888888889%}.offset-by-seventeen{margin-left:94.4444444444%}html{font-size:16px}body{font:16px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;color:#222}.form-elements li{position:relative;margin-bottom:1em}legend{display:block;width:100%;margin-bottom:1em}label,.label{position:relative;display:inline-block}label.item-field,.label.item-field{margin-right:1em}label.item-stacked:not(:only-child),.label.item-stacked:not(:only-child){margin-bottom:1em}.item-label,.field-label{position:relative;display:inline-block;cursor:pointer}.item-stacked .item-label,.item-stacked .field-label{display:block}.required .item-label:before,.required .field-label:before{content:"*";position:absolute;left:-10px}.field-help{font-size:.8em;font-style:italic}input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],textarea,.text-field{-webkit-appearance:none;outline:0;padding:5px;border:1px solid #c6c6c6;color:inherit;font-size:1rem;font-weight:normal}input[type="text"]:focus,input[type="text"]:active,input[type="password"]:focus,input[type="password"]:active,input[type="datetime"]:focus,input[type="datetime"]:active,input[type="datetime-local"]:focus,input[type="datetime-local"]:active,input[type="date"]:focus,input[type="date"]:active,input[type="month"]:focus,input[type="month"]:active,input[type="time"]:focus,input[type="time"]:active,input[type="week"]:focus,input[type="week"]:active,input[type="number"]:focus,input[type="number"]:active,input[type="email"]:focus,input[type="email"]:active,input[type="url"]:focus,input[type="url"]:active,input[type="search"]:focus,input[type="search"]:active,input[type="tel"]:focus,input[type="tel"]:active,input[type="color"]:focus,input[type="color"]:active,textarea:focus,textarea:active,.text-field:focus,.text-field:active{border-color:#a6a6a6;background:#fff}input[type="text"][readonly],input[type="text"].readonly,input[type="password"][readonly],input[type="password"].readonly,input[type="datetime"][readonly],input[type="datetime"].readonly,input[type="datetime-local"][readonly],input[type="datetime-local"].readonly,input[type="date"][readonly],input[type="date"].readonly,input[type="month"][readonly],input[type="month"].readonly,input[type="time"][readonly],input[type="time"].readonly,input[type="week"][readonly],input[type="week"].readonly,input[type="number"][readonly],input[type="number"].readonly,input[type="email"][readonly],input[type="email"].readonly,input[type="url"][readonly],input[type="url"].readonly,input[type="search"][readonly],input[type="search"].readonly,input[type="tel"][readonly],input[type="tel"].readonly,input[type="color"][readonly],input[type="color"].readonly,textarea[readonly],textarea.readonly,.text-field[readonly],.text-field.readonly{cursor:default;border-color:#c6c6c6;background-color:#f9f9f9}input[type="text"].item-error,input[type="password"].item-error,input[type="datetime"].item-error,input[type="datetime-local"].item-error,input[type="date"].item-error,input[type="month"].item-error,input[type="time"].item-error,input[type="week"].item-error,input[type="number"].item-error,input[type="email"].item-error,input[type="url"].item-error,input[type="search"].item-error,input[type="tel"].item-error,input[type="color"].item-error,textarea.item-error,.text-field.item-error{border-color:#e87352}input[type="checkbox"],input[type="radio"]{vertical-align:middle}input[type="checkbox"]+.field-label,input[type="checkbox"]+.item-label,input[type="radio"]+.field-label,input[type="radio"]+.item-label{font-weight:normal;margin-left:.25em;vertical-align:middle}textarea{min-height:3em;resize:vertical}[class*="-action"],button,.button{-webkit-appearence:none;display:inline-block;cursor:pointer;padding:0.7em 1em;background:#f9f9f9;color:#222;font-weight:bold;line-height:normal;outline:none;text-decoration:none;text-align:center;user-select:none;vertical-align:middle;white-space:normal}[class*="-action"]:hover,[class*="-action"]:focus,[class*="-action"]:active,button:hover,button:focus,button:active,.button:hover,.button:focus,.button:active{text-decoration:none}[class*="-action"]:disabled,.disabled[class*="-action"],button:disabled,button.disabled,.button:disabled,.button.disabled{cursor:default;background:#f9f9f9}.primary-action{background-color:#009bdc;color:#fff}.secondary-action{background-color:#67af00;color:#fff}.tertiary-action{background-color:#ffa900;color:#fff}.cancel-action{background-color:#e87352;color:#fff}table{width:100%}tfoot td:only-child{text-align:right}th,td{padding:0.5em;text-align:left}a{display:inline-block;padding:2px}nav a{text-decoration:none}nav ul{margin:0;padding:0;list-style:none}ol,ul{list-style-position:outside;padding-left:20px}dl{padding-left:20px}dl dt{font-weight:bold}.media-visual{display:block;float:left;margin-right:1em}.media-text+.media-visual{float:right;margin-right:auto;margin-left:1em} | ||
| /*# sourceMappingURL=tests.css.map */ |
| { | ||
| "version": 3, | ||
| "mappings": "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", | ||
| "sources": ["../lib/melange/globals/_normalize.scss","../lib/melange/globals/_generic.scss","../../caffeine/lib/mixins/_generic.scss","../../caffeine/lib/mixins/_size.scss","../lib/melange/globals/_helpers.scss","../lib/melange/layout/_widths.scss","../lib/melange/layout/_grid.scss","../lib/melange/elements/_texts.scss","../lib/melange/variables/_colors.scss","../lib/melange/elements/forms/_fields.scss","../lib/melange/variables/_sizes.scss","../lib/melange/elements/forms/_labels.scss","../lib/melange/elements/forms/_inputs.scss","../lib/melange/elements/forms/_buttons.scss","../lib/melange/elements/_tables.scss","../lib/melange/elements/_links.scss","../lib/melange/elements/_lists.scss","../lib/melange/components/_media.scss"], | ||
| "mappings": "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", | ||
| "sources": ["../lib/melange/globals/_normalize.scss","../lib/melange/globals/_generic.scss","../../caffeine/lib/mixins/_size.scss","../lib/melange/globals/_helpers.scss","../lib/melange/globals/_positions.scss","../lib/melange/layout/_widths.scss","../lib/melange/layout/_grid.scss","../lib/melange/elements/_texts.scss","../lib/melange/variables/_colors.scss","../lib/melange/elements/forms/_fields.scss","../lib/melange/variables/_sizes.scss","../lib/melange/elements/forms/_labels.scss","../lib/melange/elements/forms/_inputs.scss","../lib/melange/elements/forms/_buttons.scss","../lib/melange/elements/_tables.scss","../lib/melange/elements/_links.scss","../lib/melange/elements/_lists.scss","../lib/melange/components/_media.scss"], | ||
| "names": [], | ||
| "file": "tests.css" | ||
| } |
Sorry, the diff of this file is not supported yet
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
75159
1.8%64
1.59%70
7.69%1
Infinity%