mirror of
https://github.com/jenil/chota.git
synced 2023-08-10 21:13:07 +03:00
Jenil/linter (#92)
* add linter and format files * remove custom scrollbar css * add caniuse * add stylelint to test cmd * revert test file change
This commit is contained in:
parent
a0514001db
commit
1430bfe73a
1
.gitignore
vendored
1
.gitignore
vendored
@ -80,7 +80,6 @@ typings/
|
|||||||
|
|
||||||
# Nuxt.js build / generate output
|
# Nuxt.js build / generate output
|
||||||
.nuxt
|
.nuxt
|
||||||
dist
|
|
||||||
|
|
||||||
# Gatsby files
|
# Gatsby files
|
||||||
.cache/
|
.cache/
|
||||||
|
12
.stylelintrc
Normal file
12
.stylelintrc
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"stylelint-config-standard",
|
||||||
|
"stylelint-config-prettier"
|
||||||
|
],
|
||||||
|
"ignorePath": [
|
||||||
|
"dist/**"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"custom-property-pattern": null
|
||||||
|
}
|
||||||
|
}
|
@ -211,6 +211,8 @@ GEM
|
|||||||
jekyll-feed (~> 0.9)
|
jekyll-feed (~> 0.9)
|
||||||
jekyll-seo-tag (~> 2.1)
|
jekyll-seo-tag (~> 2.1)
|
||||||
minitest (5.16.3)
|
minitest (5.16.3)
|
||||||
|
nokogiri (1.13.10-arm64-darwin)
|
||||||
|
racc (~> 1.4)
|
||||||
nokogiri (1.13.10-x86_64-linux)
|
nokogiri (1.13.10-x86_64-linux)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
octokit (4.25.1)
|
octokit (4.25.1)
|
||||||
@ -253,6 +255,8 @@ GEM
|
|||||||
zeitwerk (2.6.0)
|
zeitwerk (2.6.0)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
|
arm64-darwin-21
|
||||||
|
arm64-darwin-22
|
||||||
x86_64-linux
|
x86_64-linux
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
175
dist/chota.css
vendored
175
dist/chota.css
vendored
@ -1,8 +1,8 @@
|
|||||||
/*! chota.css v0.8.1 | MIT License | github.com/jenil/chota */
|
/*! chota.css v0.8.1 | MIT License | github.com/jenil/chota */
|
||||||
:root {
|
:root {
|
||||||
--bg-color: #ffffff;
|
--bg-color: #fff;
|
||||||
--bg-secondary-color: #f3f3f6;
|
--bg-secondary-color: #f3f3f6;
|
||||||
--color-primary: #14854F;
|
--color-primary: #14854f;
|
||||||
--color-lightGrey: #d2d6dd;
|
--color-lightGrey: #d2d6dd;
|
||||||
--color-grey: #747681;
|
--color-grey: #747681;
|
||||||
--color-darkGrey: #3f4144;
|
--color-darkGrey: #3f4144;
|
||||||
@ -11,10 +11,10 @@
|
|||||||
--grid-maxWidth: 120rem;
|
--grid-maxWidth: 120rem;
|
||||||
--grid-gutter: 2rem;
|
--grid-gutter: 2rem;
|
||||||
--font-size: 1.6rem;
|
--font-size: 1.6rem;
|
||||||
--font-color: #333333;
|
--font-color: #333;
|
||||||
--font-family-sans: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next",
|
--font-family-sans: -apple-system, "BlinkMacSystemFont", "Avenir",
|
||||||
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
|
"Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
|
||||||
"Droid Sans", "Helvetica Neue", sans-serif;
|
"Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||||
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
||||||
}
|
}
|
||||||
html {
|
html {
|
||||||
@ -22,32 +22,23 @@ html {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 62.5%;
|
font-size: 62.5%;
|
||||||
line-height: 1.15;
|
line-height: 1.15;
|
||||||
-ms-text-size-adjust: 100%;
|
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
|
-moz-text-size-adjust: 100%;
|
||||||
|
-ms-text-size-adjust: 100%;
|
||||||
|
text-size-adjust: 100%;
|
||||||
}
|
}
|
||||||
*, *:before, *:after {
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
-webkit-box-sizing: inherit;
|
-webkit-box-sizing: inherit;
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
}
|
}
|
||||||
* {
|
|
||||||
scrollbar-width: thin;
|
|
||||||
scrollbar-color: var(--color-lightGrey) var(--bg-primary);
|
|
||||||
}
|
|
||||||
*::-webkit-scrollbar {
|
|
||||||
width: 8px;
|
|
||||||
}
|
|
||||||
*::-webkit-scrollbar-track {
|
|
||||||
background: var(--bg-primary);
|
|
||||||
}
|
|
||||||
*::-webkit-scrollbar-thumb {
|
|
||||||
background: var(--color-lightGrey);
|
|
||||||
}
|
|
||||||
body {
|
body {
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
font-size: var(--font-size);
|
font-size: var(--font-size);
|
||||||
color: var(--font-color);
|
color: var(--font-color);
|
||||||
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
|
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /* fallback */
|
||||||
font-family: var(--font-family-sans);
|
font-family: var(--font-family-sans);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -59,7 +50,7 @@ h4,
|
|||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin: 0.35em 0 0.7em 0;
|
margin: 0.35em 0 0.7em;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
@ -136,7 +127,6 @@ tt {
|
|||||||
}
|
}
|
||||||
code,
|
code,
|
||||||
kbd {
|
kbd {
|
||||||
padding: 0 0.4rem;
|
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
@ -202,7 +192,7 @@ iframe {
|
|||||||
}
|
}
|
||||||
.col,
|
.col,
|
||||||
[class*=" col-"],
|
[class*=" col-"],
|
||||||
[class^='col-'] {
|
[class^="col-"] {
|
||||||
margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
|
margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
|
||||||
}
|
}
|
||||||
.col-1 {
|
.col-1 {
|
||||||
@ -284,7 +274,7 @@ iframe {
|
|||||||
|
|
||||||
.col,
|
.col,
|
||||||
[class*="col-"],
|
[class*="col-"],
|
||||||
[class^='col-'] {
|
[class^="col-"] {
|
||||||
-webkit-box-flex: 0;
|
-webkit-box-flex: 0;
|
||||||
-ms-flex: 0 1 100%;
|
-ms-flex: 0 1 100%;
|
||||||
flex: 0 1 100%;
|
flex: 0 1 100%;
|
||||||
@ -469,7 +459,7 @@ legend {
|
|||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
letter-spacing: 0.1rem;
|
letter-spacing: 0.1rem;
|
||||||
}
|
}
|
||||||
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
|
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
|
||||||
select,
|
select,
|
||||||
textarea,
|
textarea,
|
||||||
textarea[type="text"] {
|
textarea[type="text"] {
|
||||||
@ -483,42 +473,15 @@ textarea[type="text"] {
|
|||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):not(:disabled):hover,
|
|
||||||
select:hover,
|
|
||||||
textarea:hover,
|
|
||||||
textarea[type="text"]:hover {
|
|
||||||
border-color: var(--color-grey);
|
|
||||||
}
|
|
||||||
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):focus,
|
|
||||||
select:focus,
|
|
||||||
textarea:focus,
|
|
||||||
textarea[type="text"]:focus {
|
|
||||||
outline: none;
|
|
||||||
border-color: var(--color-primary);
|
|
||||||
-webkit-box-shadow: 0 0 1px var(--color-primary);
|
|
||||||
box-shadow: 0 0 1px var(--color-primary);
|
|
||||||
}
|
|
||||||
input.error:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
|
|
||||||
textarea.error {
|
|
||||||
border-color: var(--color-error);
|
|
||||||
}
|
|
||||||
input.success:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
|
|
||||||
textarea.success {
|
|
||||||
border-color: var(--color-success);
|
|
||||||
}
|
|
||||||
select {
|
select {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
background: #f3f3f6 no-repeat 100%;
|
background: #f3f3f6 no-repeat 100%;
|
||||||
background-size: 1ex;
|
background-size: 1ex;
|
||||||
background-origin: content-box;
|
background-origin: content-box;
|
||||||
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
|
||||||
}
|
}
|
||||||
[type="checkbox"],
|
|
||||||
[type="radio"] {
|
|
||||||
width: 1.6rem;
|
|
||||||
height: 1.6rem;
|
|
||||||
}
|
|
||||||
/* BUTTONS */
|
|
||||||
.button,
|
.button,
|
||||||
[type="button"],
|
[type="button"],
|
||||||
[type="reset"],
|
[type="reset"],
|
||||||
@ -540,27 +503,16 @@ button {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.grouped {
|
.button.primary,
|
||||||
display: -webkit-box;
|
.button.secondary,
|
||||||
display: -ms-flexbox;
|
.button.dark,
|
||||||
display: flex;
|
.button.error,
|
||||||
}
|
.button.success,
|
||||||
.grouped > *:not(:last-child) {
|
[type="submit"] {
|
||||||
margin-right: 16px;
|
color: #fff;
|
||||||
}
|
z-index: 1; /* hightlight from other button's border when grouped */
|
||||||
.grouped.gapless > * {
|
background-color: #000;
|
||||||
margin: 0 0 0 -1px !important;
|
background-color: var(--color-primary);
|
||||||
border-radius:0 !important;
|
|
||||||
}
|
|
||||||
.grouped.gapless > *:first-child {
|
|
||||||
margin: 0 !important;
|
|
||||||
border-radius:4px 0 0 4px !important;
|
|
||||||
}
|
|
||||||
.grouped.gapless > *:last-child {
|
|
||||||
border-radius:0 4px 4px 0 !important;
|
|
||||||
}
|
|
||||||
.button + .button {
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
}
|
||||||
.button:hover,
|
.button:hover,
|
||||||
[type="button"]:hover,
|
[type="button"]:hover,
|
||||||
@ -578,22 +530,62 @@ button:active {
|
|||||||
transform: scale(0.98);
|
transform: scale(0.98);
|
||||||
}
|
}
|
||||||
input:disabled,
|
input:disabled,
|
||||||
button:disabled,
|
|
||||||
input:disabled:hover,
|
input:disabled:hover,
|
||||||
|
button:disabled,
|
||||||
button:disabled:hover {
|
button:disabled:hover {
|
||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
.button.primary,
|
.grouped {
|
||||||
.button.secondary,
|
display: -webkit-box;
|
||||||
.button.dark,
|
display: -ms-flexbox;
|
||||||
.button.error,
|
display: flex;
|
||||||
.button.success,
|
}
|
||||||
[type="submit"] {
|
.grouped > *:not(:last-child) {
|
||||||
color: #fff;
|
margin-right: 16px;
|
||||||
z-index: 1; /* hightlight from other button's border when grouped */
|
}
|
||||||
background-color: #000;
|
.grouped.gapless > * {
|
||||||
background-color: var(--color-primary);
|
margin: 0 0 0 -1px !important;
|
||||||
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
|
.grouped.gapless > *:first-child {
|
||||||
|
margin: 0 !important;
|
||||||
|
border-radius: 4px 0 0 4px !important;
|
||||||
|
}
|
||||||
|
.grouped.gapless > *:last-child {
|
||||||
|
border-radius: 0 4px 4px 0 !important;
|
||||||
|
}
|
||||||
|
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"], :disabled):hover,
|
||||||
|
select:hover,
|
||||||
|
textarea:hover,
|
||||||
|
textarea[type="text"]:hover {
|
||||||
|
border-color: var(--color-grey);
|
||||||
|
}
|
||||||
|
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]):focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus,
|
||||||
|
textarea[type="text"]:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: var(--color-primary);
|
||||||
|
-webkit-box-shadow: 0 0 1px var(--color-primary);
|
||||||
|
box-shadow: 0 0 1px var(--color-primary);
|
||||||
|
}
|
||||||
|
input.error:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
|
||||||
|
textarea.error {
|
||||||
|
border-color: var(--color-error);
|
||||||
|
}
|
||||||
|
input.success:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
|
||||||
|
textarea.success {
|
||||||
|
border-color: var(--color-success);
|
||||||
|
}
|
||||||
|
[type="checkbox"],
|
||||||
|
[type="radio"] {
|
||||||
|
width: 1.6rem;
|
||||||
|
height: 1.6rem;
|
||||||
|
}
|
||||||
|
/* BUTTONS */
|
||||||
|
.button + .button {
|
||||||
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
.button.secondary {
|
.button.secondary {
|
||||||
background-color: var(--color-grey);
|
background-color: var(--color-grey);
|
||||||
@ -669,7 +661,7 @@ button:disabled:hover {
|
|||||||
.nav img {
|
.nav img {
|
||||||
max-height: 3rem;
|
max-height: 3rem;
|
||||||
}
|
}
|
||||||
.nav>.container {
|
.nav > .container {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -701,12 +693,13 @@ button:disabled:hover {
|
|||||||
}
|
}
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
.nav,
|
.nav,
|
||||||
.nav>.container {
|
.nav > .container {
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
-webkit-box-direction: normal;
|
-webkit-box-direction: normal;
|
||||||
-ms-flex-direction: column;
|
-ms-flex-direction: column;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-center,
|
.nav-center,
|
||||||
.nav-left,
|
.nav-left,
|
||||||
.nav-right {
|
.nav-right {
|
||||||
@ -809,7 +802,7 @@ button:disabled:hover {
|
|||||||
padding: 0.7rem;
|
padding: 0.7rem;
|
||||||
font-size: 1.125em;
|
font-size: 1.125em;
|
||||||
}
|
}
|
||||||
.tag+.tag {
|
.tag + .tag {
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
details.dropdown {
|
details.dropdown {
|
||||||
|
2
dist/chota.min.css
vendored
2
dist/chota.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,3 +1,6 @@
|
|||||||
|
/* stylelint-disable color-function-notation */
|
||||||
|
/* stylelint-disable length-zero-no-unit */
|
||||||
|
/* stylelint-disable property-no-vendor-prefix */
|
||||||
body.dark {
|
body.dark {
|
||||||
--bg-color: #000;
|
--bg-color: #000;
|
||||||
--bg-secondary-color: #262626;
|
--bg-secondary-color: #262626;
|
||||||
@ -60,21 +63,21 @@ hr {
|
|||||||
margin: 3rem 0;
|
margin: 3rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.dark .card {
|
||||||
|
box-shadow: 0 1px 3px var(--color-darkGrey);
|
||||||
|
}
|
||||||
|
|
||||||
#grid .card {
|
#grid .card {
|
||||||
padding: 1rem 0rem;
|
padding: 1rem 0rem;
|
||||||
-webkit-box-shadow: none;
|
-webkit-box-shadow: none;
|
||||||
-moz-box-shadow: none;
|
-moz-box-shadow: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
background-color: rgba(26, 159, 96, 0.2);
|
background-color: rgba(26, 159, 96, 20%);
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.dark #grid .card {
|
body.dark #grid .card {
|
||||||
background-color: rgba(26, 159, 96, 0.4);
|
background-color: rgba(26, 159, 96, 40%);
|
||||||
}
|
|
||||||
|
|
||||||
body.dark .card {
|
|
||||||
box-shadow: 0 1px 3px var(--color-darkGrey);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttons {
|
.buttons {
|
||||||
@ -95,6 +98,7 @@ body.dark .card {
|
|||||||
code {
|
code {
|
||||||
background-color: var(--bg-secondary-color);
|
background-color: var(--bg-secondary-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight .c {
|
.highlight .c {
|
||||||
color: #93a1a1;
|
color: #93a1a1;
|
||||||
} /* Comment */
|
} /* Comment */
|
||||||
|
36
package.json
36
package.json
@ -5,11 +5,11 @@
|
|||||||
"main": "dist/chota.min.css",
|
"main": "dist/chota.min.css",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "run-p docs watch",
|
"start": "run-p docs watch",
|
||||||
"docs": "jekyll s -s docs",
|
"docs": "bundle exec jekyll s -s docs",
|
||||||
"build": "rimraf dist/* && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c | xargs echo 'Size:'",
|
"build": "rimraf dist/* && stylelint src/*.css --fix && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c | xargs echo 'Size:'",
|
||||||
"postcss": "postcss ./src/chota.css -d dist/",
|
"postcss": "postcss ./src/chota.css -d dist/",
|
||||||
"watch": "cross-env NODE_ENV=development yarn postcss -w",
|
"watch": "cross-env NODE_ENV=development yarn postcss -w",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "stylelint src/*.css",
|
||||||
"prepublish": "yarn build"
|
"prepublish": "yarn build"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -28,15 +28,21 @@
|
|||||||
"url": "https://github.com/jenil/chota/issues"
|
"url": "https://github.com/jenil/chota/issues"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^10.4.8",
|
"autoprefixer": "10.4.8",
|
||||||
"cross-env": "^7.0.2",
|
"caniuse-lite": "1.0.30001468",
|
||||||
"cssnano": "^5.1.13",
|
"cross-env": "7.0.2",
|
||||||
"npm-run-all": "^4.1.5",
|
"cssnano": "5.1.13",
|
||||||
"postcss": "^8.4.16",
|
"npm-run-all": "4.1.5",
|
||||||
"postcss-cli": "^10.0.0",
|
"postcss": "8.4.16",
|
||||||
"postcss-csso": "^6.0.1",
|
"postcss-cli": "10.0.0",
|
||||||
"postcss-import": "^15.0.0",
|
"postcss-csso": "6.0.1",
|
||||||
"rimraf": "^3.0.0"
|
"postcss-import": "15.0.0",
|
||||||
|
"postcss-reporter": "7.0.5",
|
||||||
|
"prettier": "2.7.1",
|
||||||
|
"rimraf": "3.0.0",
|
||||||
|
"stylelint": "14.11.0",
|
||||||
|
"stylelint-config-prettier": "9.0.3",
|
||||||
|
"stylelint-config-standard": "28.0.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"src/",
|
"src/",
|
||||||
@ -45,5 +51,9 @@
|
|||||||
],
|
],
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 2 versions"
|
"last 2 versions"
|
||||||
]
|
],
|
||||||
|
"prettier": {
|
||||||
|
"tabWidth": 2
|
||||||
|
},
|
||||||
|
"dependencies": {}
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,19 @@
|
|||||||
let plugins = [
|
let plugins = [
|
||||||
require("postcss-import"),
|
require("postcss-import")({
|
||||||
require("autoprefixer")()
|
plugins: [require("stylelint")({ fix: true, formatter: "compact" })],
|
||||||
|
}),
|
||||||
|
require("autoprefixer")(),
|
||||||
|
require("postcss-reporter")({ clearReportedMessages: true }),
|
||||||
];
|
];
|
||||||
|
|
||||||
// if (process.env.NODE_ENV == 'production') plugins.push(require("postcss-csso"))
|
// if (process.env.NODE_ENV == 'production') plugins.push(require("postcss-csso"))
|
||||||
if (process.env.NODE_ENV == "production")
|
if (process.env.NODE_ENV == "production")
|
||||||
plugins.push(
|
plugins.push(
|
||||||
require("cssnano")({
|
require("cssnano")({
|
||||||
preset: "default"
|
preset: "default",
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins
|
plugins,
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
:root {
|
:root {
|
||||||
--bg-color: #ffffff;
|
--bg-color: #fff;
|
||||||
--bg-secondary-color: #f3f3f6;
|
--bg-secondary-color: #f3f3f6;
|
||||||
--color-primary: #14854F;
|
--color-primary: #14854f;
|
||||||
--color-lightGrey: #d2d6dd;
|
--color-lightGrey: #d2d6dd;
|
||||||
--color-grey: #747681;
|
--color-grey: #747681;
|
||||||
--color-darkGrey: #3f4144;
|
--color-darkGrey: #3f4144;
|
||||||
@ -10,10 +10,10 @@
|
|||||||
--grid-maxWidth: 120rem;
|
--grid-maxWidth: 120rem;
|
||||||
--grid-gutter: 2rem;
|
--grid-gutter: 2rem;
|
||||||
--font-size: 1.6rem;
|
--font-size: 1.6rem;
|
||||||
--font-color: #333333;
|
--font-color: #333;
|
||||||
--font-family-sans: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next",
|
--font-family-sans: -apple-system, "BlinkMacSystemFont", "Avenir",
|
||||||
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
|
"Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
|
||||||
"Droid Sans", "Helvetica Neue", sans-serif;
|
"Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||||
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -21,37 +21,21 @@ html {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 62.5%;
|
font-size: 62.5%;
|
||||||
line-height: 1.15;
|
line-height: 1.15;
|
||||||
-ms-text-size-adjust: 100%;
|
text-size-adjust: 100%;
|
||||||
-webkit-text-size-adjust: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
*, *:before, *:after {
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
|
||||||
scrollbar-width: thin;
|
|
||||||
scrollbar-color: var(--color-lightGrey) var(--bg-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
*::-webkit-scrollbar {
|
|
||||||
width: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
*::-webkit-scrollbar-track {
|
|
||||||
background: var(--bg-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
*::-webkit-scrollbar-thumb {
|
|
||||||
background: var(--color-lightGrey);
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: var(--bg-color);
|
background-color: var(--bg-color);
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
font-size: var(--font-size);
|
font-size: var(--font-size);
|
||||||
color: var(--font-color);
|
color: var(--font-color);
|
||||||
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
|
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /* fallback */
|
||||||
font-family: var(--font-family-sans);
|
font-family: var(--font-family-sans);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -64,7 +48,7 @@ h4,
|
|||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin: 0.35em 0 0.7em 0;
|
margin: 0.35em 0 0.7em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
@ -161,7 +145,6 @@ tt {
|
|||||||
|
|
||||||
code,
|
code,
|
||||||
kbd {
|
kbd {
|
||||||
padding: 0 0.4rem;
|
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
141
src/_form.css
141
src/_form.css
@ -8,7 +8,7 @@ legend {
|
|||||||
letter-spacing: 0.1rem;
|
letter-spacing: 0.1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
|
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
|
||||||
select,
|
select,
|
||||||
textarea,
|
textarea,
|
||||||
textarea[type="text"] {
|
textarea[type="text"] {
|
||||||
@ -22,47 +22,14 @@ textarea[type="text"] {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):not(:disabled):hover,
|
|
||||||
select:hover,
|
|
||||||
textarea:hover,
|
|
||||||
textarea[type="text"]:hover {
|
|
||||||
border-color: var(--color-grey);
|
|
||||||
}
|
|
||||||
|
|
||||||
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):focus,
|
|
||||||
select:focus,
|
|
||||||
textarea:focus,
|
|
||||||
textarea[type="text"]:focus {
|
|
||||||
outline: none;
|
|
||||||
border-color: var(--color-primary);
|
|
||||||
box-shadow: 0 0 1px var(--color-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
input.error:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
|
|
||||||
textarea.error {
|
|
||||||
border-color: var(--color-error);
|
|
||||||
}
|
|
||||||
|
|
||||||
input.success:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
|
|
||||||
textarea.success {
|
|
||||||
border-color: var(--color-success);
|
|
||||||
}
|
|
||||||
|
|
||||||
select {
|
select {
|
||||||
-webkit-appearance: none;
|
appearance: none;
|
||||||
background: #f3f3f6 no-repeat 100%;
|
background: #f3f3f6 no-repeat 100%;
|
||||||
background-size: 1ex;
|
background-size: 1ex;
|
||||||
background-origin: content-box;
|
background-origin: content-box;
|
||||||
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
|
||||||
}
|
}
|
||||||
|
|
||||||
[type="checkbox"],
|
|
||||||
[type="radio"] {
|
|
||||||
width: 1.6rem;
|
|
||||||
height: 1.6rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* BUTTONS */
|
|
||||||
.button,
|
.button,
|
||||||
[type="button"],
|
[type="button"],
|
||||||
[type="reset"],
|
[type="reset"],
|
||||||
@ -83,29 +50,16 @@ button {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grouped {
|
.button.primary,
|
||||||
display: flex;
|
.button.secondary,
|
||||||
}
|
.button.dark,
|
||||||
|
.button.error,
|
||||||
.grouped > *:not(:last-child) {
|
.button.success,
|
||||||
margin-right: 16px;
|
[type="submit"] {
|
||||||
}
|
color: #fff;
|
||||||
|
z-index: 1; /* hightlight from other button's border when grouped */
|
||||||
.grouped.gapless > * {
|
background-color: #000;
|
||||||
margin: 0 0 0 -1px !important;
|
background-color: var(--color-primary);
|
||||||
border-radius:0 !important;
|
|
||||||
}
|
|
||||||
.grouped.gapless > *:first-child {
|
|
||||||
margin: 0 !important;
|
|
||||||
border-radius:4px 0 0 4px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grouped.gapless > *:last-child {
|
|
||||||
border-radius:0 4px 4px 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button + .button {
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:hover,
|
.button:hover,
|
||||||
@ -125,23 +79,71 @@ button:active {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input:disabled,
|
input:disabled,
|
||||||
button:disabled,
|
|
||||||
input:disabled:hover,
|
input:disabled:hover,
|
||||||
|
button:disabled,
|
||||||
button:disabled:hover {
|
button:disabled:hover {
|
||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button.primary,
|
.grouped {
|
||||||
.button.secondary,
|
display: flex;
|
||||||
.button.dark,
|
}
|
||||||
.button.error,
|
|
||||||
.button.success,
|
.grouped > *:not(:last-child) {
|
||||||
[type="submit"] {
|
margin-right: 16px;
|
||||||
color: #fff;
|
}
|
||||||
z-index: 1; /* hightlight from other button's border when grouped */
|
|
||||||
background-color: #000;
|
.grouped.gapless > * {
|
||||||
background-color: var(--color-primary);
|
margin: 0 0 0 -1px !important;
|
||||||
|
border-radius: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grouped.gapless > *:first-child {
|
||||||
|
margin: 0 !important;
|
||||||
|
border-radius: 4px 0 0 4px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grouped.gapless > *:last-child {
|
||||||
|
border-radius: 0 4px 4px 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"], :disabled):hover,
|
||||||
|
select:hover,
|
||||||
|
textarea:hover,
|
||||||
|
textarea[type="text"]:hover {
|
||||||
|
border-color: var(--color-grey);
|
||||||
|
}
|
||||||
|
|
||||||
|
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]):focus,
|
||||||
|
select:focus,
|
||||||
|
textarea:focus,
|
||||||
|
textarea[type="text"]:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: var(--color-primary);
|
||||||
|
box-shadow: 0 0 1px var(--color-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
input.error:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
|
||||||
|
textarea.error {
|
||||||
|
border-color: var(--color-error);
|
||||||
|
}
|
||||||
|
|
||||||
|
input.success:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
|
||||||
|
textarea.success {
|
||||||
|
border-color: var(--color-success);
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="checkbox"],
|
||||||
|
[type="radio"] {
|
||||||
|
width: 1.6rem;
|
||||||
|
height: 1.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* BUTTONS */
|
||||||
|
|
||||||
|
.button + .button {
|
||||||
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button.secondary {
|
.button.secondary {
|
||||||
@ -194,6 +196,7 @@ button:disabled:hover {
|
|||||||
.button.icon > img {
|
.button.icon > img {
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button.icon-only {
|
.button.icon-only {
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
.col,
|
.col,
|
||||||
[class*=" col-"],
|
[class*=" col-"],
|
||||||
[class^='col-'] {
|
[class^="col-"] {
|
||||||
margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
|
margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -94,7 +94,7 @@
|
|||||||
|
|
||||||
.col,
|
.col,
|
||||||
[class*="col-"],
|
[class*="col-"],
|
||||||
[class^='col-'] {
|
[class^="col-"] {
|
||||||
flex: 0 1 100%;
|
flex: 0 1 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
max-height: 3rem;
|
max-height: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav>.container {
|
.nav > .container {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -33,9 +33,10 @@
|
|||||||
|
|
||||||
@media screen and (max-width: 480px) {
|
@media screen and (max-width: 480px) {
|
||||||
.nav,
|
.nav,
|
||||||
.nav>.container {
|
.nav > .container {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-center,
|
.nav-center,
|
||||||
.nav-left,
|
.nav-left,
|
||||||
.nav-right {
|
.nav-right {
|
||||||
|
@ -18,6 +18,6 @@
|
|||||||
font-size: 1.125em;
|
font-size: 1.125em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag+.tag {
|
.tag + .tag {
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
@ -2,11 +2,9 @@
|
|||||||
@import "_base.css";
|
@import "_base.css";
|
||||||
@import "_grid.css";
|
@import "_grid.css";
|
||||||
@import "_form.css";
|
@import "_form.css";
|
||||||
|
|
||||||
@import "_nav.css";
|
@import "_nav.css";
|
||||||
@import "_card.css";
|
@import "_card.css";
|
||||||
@import "_tab.css";
|
@import "_tab.css";
|
||||||
@import "_tag.css";
|
@import "_tag.css";
|
||||||
@import "_dropdown.css";
|
@import "_dropdown.css";
|
||||||
|
|
||||||
@import "_util.css";
|
@import "_util.css";
|
||||||
|
Loading…
Reference in New Issue
Block a user