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
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.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-seo-tag (~> 2.1)
|
||||
minitest (5.16.3)
|
||||
nokogiri (1.13.10-arm64-darwin)
|
||||
racc (~> 1.4)
|
||||
nokogiri (1.13.10-x86_64-linux)
|
||||
racc (~> 1.4)
|
||||
octokit (4.25.1)
|
||||
@ -253,6 +255,8 @@ GEM
|
||||
zeitwerk (2.6.0)
|
||||
|
||||
PLATFORMS
|
||||
arm64-darwin-21
|
||||
arm64-darwin-22
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
|
943
dist/chota.css
vendored
943
dist/chota.css
vendored
File diff suppressed because it is too large
Load Diff
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 {
|
||||
--bg-color: #000;
|
||||
--bg-secondary-color: #262626;
|
||||
@ -60,21 +63,21 @@ hr {
|
||||
margin: 3rem 0;
|
||||
}
|
||||
|
||||
body.dark .card {
|
||||
box-shadow: 0 1px 3px var(--color-darkGrey);
|
||||
}
|
||||
|
||||
#grid .card {
|
||||
padding: 1rem 0rem;
|
||||
-webkit-box-shadow: none;
|
||||
-moz-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;
|
||||
}
|
||||
|
||||
body.dark #grid .card {
|
||||
background-color: rgba(26, 159, 96, 0.4);
|
||||
}
|
||||
|
||||
body.dark .card {
|
||||
box-shadow: 0 1px 3px var(--color-darkGrey);
|
||||
background-color: rgba(26, 159, 96, 40%);
|
||||
}
|
||||
|
||||
.buttons {
|
||||
@ -95,6 +98,7 @@ body.dark .card {
|
||||
code {
|
||||
background-color: var(--bg-secondary-color);
|
||||
}
|
||||
|
||||
.highlight .c {
|
||||
color: #93a1a1;
|
||||
} /* Comment */
|
||||
|
36
package.json
36
package.json
@ -5,11 +5,11 @@
|
||||
"main": "dist/chota.min.css",
|
||||
"scripts": {
|
||||
"start": "run-p docs watch",
|
||||
"docs": "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:'",
|
||||
"docs": "bundle exec jekyll s -s docs",
|
||||
"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/",
|
||||
"watch": "cross-env NODE_ENV=development yarn postcss -w",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"test": "stylelint src/*.css",
|
||||
"prepublish": "yarn build"
|
||||
},
|
||||
"keywords": [
|
||||
@ -28,15 +28,21 @@
|
||||
"url": "https://github.com/jenil/chota/issues"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "^10.4.8",
|
||||
"cross-env": "^7.0.2",
|
||||
"cssnano": "^5.1.13",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"postcss": "^8.4.16",
|
||||
"postcss-cli": "^10.0.0",
|
||||
"postcss-csso": "^6.0.1",
|
||||
"postcss-import": "^15.0.0",
|
||||
"rimraf": "^3.0.0"
|
||||
"autoprefixer": "10.4.8",
|
||||
"caniuse-lite": "1.0.30001468",
|
||||
"cross-env": "7.0.2",
|
||||
"cssnano": "5.1.13",
|
||||
"npm-run-all": "4.1.5",
|
||||
"postcss": "8.4.16",
|
||||
"postcss-cli": "10.0.0",
|
||||
"postcss-csso": "6.0.1",
|
||||
"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": [
|
||||
"src/",
|
||||
@ -45,5 +51,9 @@
|
||||
],
|
||||
"browserslist": [
|
||||
"last 2 versions"
|
||||
]
|
||||
],
|
||||
"prettier": {
|
||||
"tabWidth": 2
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
|
@ -1,16 +1,19 @@
|
||||
let plugins = [
|
||||
require("postcss-import"),
|
||||
require("autoprefixer")()
|
||||
require("postcss-import")({
|
||||
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("cssnano")({
|
||||
preset: "default"
|
||||
preset: "default",
|
||||
})
|
||||
);
|
||||
|
||||
module.exports = {
|
||||
plugins
|
||||
plugins,
|
||||
};
|
||||
|
@ -1,7 +1,7 @@
|
||||
:root {
|
||||
--bg-color: #ffffff;
|
||||
--bg-color: #fff;
|
||||
--bg-secondary-color: #f3f3f6;
|
||||
--color-primary: #14854F;
|
||||
--color-primary: #14854f;
|
||||
--color-lightGrey: #d2d6dd;
|
||||
--color-grey: #747681;
|
||||
--color-darkGrey: #3f4144;
|
||||
@ -10,10 +10,10 @@
|
||||
--grid-maxWidth: 120rem;
|
||||
--grid-gutter: 2rem;
|
||||
--font-size: 1.6rem;
|
||||
--font-color: #333333;
|
||||
--font-family-sans: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next",
|
||||
"Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
|
||||
"Droid Sans", "Helvetica Neue", sans-serif;
|
||||
--font-color: #333;
|
||||
--font-family-sans: -apple-system, "BlinkMacSystemFont", "Avenir",
|
||||
"Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
|
||||
"Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
|
||||
}
|
||||
|
||||
@ -21,37 +21,21 @@ html {
|
||||
box-sizing: border-box;
|
||||
font-size: 62.5%;
|
||||
line-height: 1.15;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
*, *:before, *:after {
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
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 {
|
||||
background-color: var(--bg-color);
|
||||
line-height: 1.6;
|
||||
font-size: var(--font-size);
|
||||
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);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@ -64,7 +48,7 @@ h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-weight: 500;
|
||||
margin: 0.35em 0 0.7em 0;
|
||||
margin: 0.35em 0 0.7em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
@ -161,7 +145,6 @@ tt {
|
||||
|
||||
code,
|
||||
kbd {
|
||||
padding: 0 0.4rem;
|
||||
font-size: 90%;
|
||||
white-space: pre-wrap;
|
||||
border-radius: 4px;
|
||||
|
141
src/_form.css
141
src/_form.css
@ -8,7 +8,7 @@ legend {
|
||||
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,
|
||||
textarea,
|
||||
textarea[type="text"] {
|
||||
@ -22,47 +22,14 @@ textarea[type="text"] {
|
||||
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 {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
background: #f3f3f6 no-repeat 100%;
|
||||
background-size: 1ex;
|
||||
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>");
|
||||
}
|
||||
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
width: 1.6rem;
|
||||
height: 1.6rem;
|
||||
}
|
||||
|
||||
/* BUTTONS */
|
||||
.button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
@ -83,29 +50,16 @@ button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.grouped {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.grouped > *:not(:last-child) {
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.grouped.gapless > * {
|
||||
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;
|
||||
}
|
||||
|
||||
.button + .button {
|
||||
margin-left: 1rem;
|
||||
.button.primary,
|
||||
.button.secondary,
|
||||
.button.dark,
|
||||
.button.error,
|
||||
.button.success,
|
||||
[type="submit"] {
|
||||
color: #fff;
|
||||
z-index: 1; /* hightlight from other button's border when grouped */
|
||||
background-color: #000;
|
||||
background-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.button:hover,
|
||||
@ -125,23 +79,71 @@ button:active {
|
||||
}
|
||||
|
||||
input:disabled,
|
||||
button:disabled,
|
||||
input:disabled:hover,
|
||||
button:disabled,
|
||||
button:disabled:hover {
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.button.primary,
|
||||
.button.secondary,
|
||||
.button.dark,
|
||||
.button.error,
|
||||
.button.success,
|
||||
[type="submit"] {
|
||||
color: #fff;
|
||||
z-index: 1; /* hightlight from other button's border when grouped */
|
||||
background-color: #000;
|
||||
background-color: var(--color-primary);
|
||||
.grouped {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.grouped > *:not(:last-child) {
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.grouped.gapless > * {
|
||||
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 {
|
||||
@ -194,6 +196,7 @@ button:disabled:hover {
|
||||
.button.icon > img {
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
.button.icon-only {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
286
src/_grid.css
286
src/_grid.css
@ -1,225 +1,225 @@
|
||||
.container {
|
||||
max-width: var(--grid-maxWidth);
|
||||
margin: 0 auto;
|
||||
width: 96%;
|
||||
padding: 0 calc(var(--grid-gutter) / 2);
|
||||
max-width: var(--grid-maxWidth);
|
||||
margin: 0 auto;
|
||||
width: 96%;
|
||||
padding: 0 calc(var(--grid-gutter) / 2);
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: flex-start;
|
||||
margin-left: calc(var(--grid-gutter) / -2);
|
||||
margin-right: calc(var(--grid-gutter) / -2);
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: flex-start;
|
||||
margin-left: calc(var(--grid-gutter) / -2);
|
||||
margin-right: calc(var(--grid-gutter) / -2);
|
||||
}
|
||||
|
||||
.row.reverse {
|
||||
flex-direction: row-reverse;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.col {
|
||||
flex: 1;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.col,
|
||||
[class*=" col-"],
|
||||
[class^='col-'] {
|
||||
margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
|
||||
[class^="col-"] {
|
||||
margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
|
||||
}
|
||||
|
||||
.col-1 {
|
||||
flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/1)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/1)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-2 {
|
||||
flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/2)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/2)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-3 {
|
||||
flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/3)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/3)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-4 {
|
||||
flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/4)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/4)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-5 {
|
||||
flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/5)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/5)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-6 {
|
||||
flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/6)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/6)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-7 {
|
||||
flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/7)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/7)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-8 {
|
||||
flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/8)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/8)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-9 {
|
||||
flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/9)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/9)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-10 {
|
||||
flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/10)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/10)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-11 {
|
||||
flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/11)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/11)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-12 {
|
||||
flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/12)) - var(--grid-gutter));
|
||||
flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/12)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
@media screen and (max-width: 599px) {
|
||||
.container {
|
||||
width: 100%;
|
||||
}
|
||||
.container {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.col,
|
||||
[class*="col-"],
|
||||
[class^='col-'] {
|
||||
flex: 0 1 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
.col,
|
||||
[class*="col-"],
|
||||
[class^="col-"] {
|
||||
flex: 0 1 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 900px) {
|
||||
.col-1-md {
|
||||
flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/1)) - var(--grid-gutter));
|
||||
}
|
||||
.col-1-md {
|
||||
flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/1)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-2-md {
|
||||
flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/2)) - var(--grid-gutter));
|
||||
}
|
||||
.col-2-md {
|
||||
flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/2)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-3-md {
|
||||
flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/3)) - var(--grid-gutter));
|
||||
}
|
||||
.col-3-md {
|
||||
flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/3)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-4-md {
|
||||
flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/4)) - var(--grid-gutter));
|
||||
}
|
||||
.col-4-md {
|
||||
flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/4)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-5-md {
|
||||
flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/5)) - var(--grid-gutter));
|
||||
}
|
||||
.col-5-md {
|
||||
flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/5)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-6-md {
|
||||
flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/6)) - var(--grid-gutter));
|
||||
}
|
||||
.col-6-md {
|
||||
flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/6)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-7-md {
|
||||
flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/7)) - var(--grid-gutter));
|
||||
}
|
||||
.col-7-md {
|
||||
flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/7)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-8-md {
|
||||
flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/8)) - var(--grid-gutter));
|
||||
}
|
||||
.col-8-md {
|
||||
flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/8)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-9-md {
|
||||
flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/9)) - var(--grid-gutter));
|
||||
}
|
||||
.col-9-md {
|
||||
flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/9)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-10-md {
|
||||
flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/10)) - var(--grid-gutter));
|
||||
}
|
||||
.col-10-md {
|
||||
flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/10)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-11-md {
|
||||
flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/11)) - var(--grid-gutter));
|
||||
}
|
||||
.col-11-md {
|
||||
flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/11)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-12-md {
|
||||
flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/12)) - var(--grid-gutter));
|
||||
}
|
||||
.col-12-md {
|
||||
flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/12)) - var(--grid-gutter));
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1200px) {
|
||||
.col-1-lg {
|
||||
flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/1)) - var(--grid-gutter));
|
||||
}
|
||||
.col-1-lg {
|
||||
flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/1)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-2-lg {
|
||||
flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/2)) - var(--grid-gutter));
|
||||
}
|
||||
.col-2-lg {
|
||||
flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/2)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-3-lg {
|
||||
flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/3)) - var(--grid-gutter));
|
||||
}
|
||||
.col-3-lg {
|
||||
flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/3)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-4-lg {
|
||||
flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/4)) - var(--grid-gutter));
|
||||
}
|
||||
.col-4-lg {
|
||||
flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/4)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-5-lg {
|
||||
flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/5)) - var(--grid-gutter));
|
||||
}
|
||||
.col-5-lg {
|
||||
flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/5)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-6-lg {
|
||||
flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/6)) - var(--grid-gutter));
|
||||
}
|
||||
.col-6-lg {
|
||||
flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/6)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-7-lg {
|
||||
flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/7)) - var(--grid-gutter));
|
||||
}
|
||||
.col-7-lg {
|
||||
flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/7)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-8-lg {
|
||||
flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/8)) - var(--grid-gutter));
|
||||
}
|
||||
.col-8-lg {
|
||||
flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/8)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-9-lg {
|
||||
flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/9)) - var(--grid-gutter));
|
||||
}
|
||||
.col-9-lg {
|
||||
flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/9)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-10-lg {
|
||||
flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/10)) - var(--grid-gutter));
|
||||
}
|
||||
.col-10-lg {
|
||||
flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/10)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-11-lg {
|
||||
flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/11)) - var(--grid-gutter));
|
||||
}
|
||||
.col-11-lg {
|
||||
flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/11)) - var(--grid-gutter));
|
||||
}
|
||||
|
||||
.col-12-lg {
|
||||
flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/12)) - var(--grid-gutter));
|
||||
}
|
||||
}
|
||||
.col-12-lg {
|
||||
flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
|
||||
max-width: calc((100% / (12/12)) - var(--grid-gutter));
|
||||
}
|
||||
}
|
||||
|
67
src/_nav.css
67
src/_nav.css
@ -1,74 +1,75 @@
|
||||
.nav {
|
||||
display: flex;
|
||||
min-height: 5rem;
|
||||
align-items: stretch;
|
||||
display: flex;
|
||||
min-height: 5rem;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.nav img {
|
||||
max-height: 3rem;
|
||||
max-height: 3rem;
|
||||
}
|
||||
|
||||
.nav>.container {
|
||||
display: flex;
|
||||
.nav > .container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav-center,
|
||||
.nav-left,
|
||||
.nav-right {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.nav-left {
|
||||
justify-content: flex-start;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.nav-right {
|
||||
justify-content: flex-end;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.nav-center {
|
||||
justify-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
.nav,
|
||||
.nav>.container {
|
||||
flex-direction: column;
|
||||
}
|
||||
.nav-center,
|
||||
.nav-left,
|
||||
.nav-right {
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
.nav,
|
||||
.nav > .container {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.nav-center,
|
||||
.nav-left,
|
||||
.nav-right {
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.nav a,
|
||||
.nav .brand {
|
||||
text-decoration: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 1rem 2rem;
|
||||
color: var(--color-darkGrey);
|
||||
text-decoration: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 1rem 2rem;
|
||||
color: var(--color-darkGrey);
|
||||
}
|
||||
|
||||
.nav [aria-current="page"]:not(.button),
|
||||
.nav .active:not(.button) {
|
||||
color: #000; /* fallback */
|
||||
color: var(--color-primary);
|
||||
color: #000; /* fallback */
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.nav .brand {
|
||||
font-size: 1.75em;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
font-size: 1.75em;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.nav .brand img {
|
||||
padding-right: 1rem;
|
||||
padding-right: 1rem;
|
||||
}
|
||||
|
||||
.nav .button {
|
||||
margin: auto 1rem;
|
||||
margin: auto 1rem;
|
||||
}
|
||||
|
22
src/_tab.css
22
src/_tab.css
@ -1,32 +1,32 @@
|
||||
.tabs {
|
||||
display: flex;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.tabs a {
|
||||
text-decoration: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.tabs > .dropdown > summary,
|
||||
.tabs > a {
|
||||
padding: 1rem 2rem;
|
||||
flex: 0 1 auto;
|
||||
color: var(--color-darkGrey);
|
||||
border-bottom: 2px solid var(--color-lightGrey);
|
||||
text-align: center;
|
||||
padding: 1rem 2rem;
|
||||
flex: 0 1 auto;
|
||||
color: var(--color-darkGrey);
|
||||
border-bottom: 2px solid var(--color-lightGrey);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tabs > a[aria-current="page"],
|
||||
.tabs > a.active,
|
||||
.tabs > a:hover {
|
||||
opacity: 1;
|
||||
border-bottom: 2px solid var(--color-darkGrey);
|
||||
opacity: 1;
|
||||
border-bottom: 2px solid var(--color-darkGrey);
|
||||
}
|
||||
|
||||
.tabs > a[aria-current="page"],
|
||||
.tabs > a.active {
|
||||
border-color: var(--color-primary);
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.tabs.is-full a {
|
||||
flex: 1 1 auto;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
@ -18,6 +18,6 @@
|
||||
font-size: 1.125em;
|
||||
}
|
||||
|
||||
.tag+.tag {
|
||||
.tag + .tag {
|
||||
margin-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
140
src/_util.css
140
src/_util.css
@ -1,211 +1,211 @@
|
||||
/* Colors */
|
||||
.bg-primary {
|
||||
background-color: var(--color-primary) !important;
|
||||
background-color: var(--color-primary) !important;
|
||||
}
|
||||
|
||||
.bg-light {
|
||||
background-color: var(--color-lightGrey) !important;
|
||||
background-color: var(--color-lightGrey) !important;
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
background-color: var(--color-darkGrey) !important;
|
||||
background-color: var(--color-darkGrey) !important;
|
||||
}
|
||||
|
||||
.bg-grey {
|
||||
background-color: var(--color-grey) !important;
|
||||
background-color: var(--color-grey) !important;
|
||||
}
|
||||
|
||||
.bg-error {
|
||||
background-color: var(--color-error) !important;
|
||||
background-color: var(--color-error) !important;
|
||||
}
|
||||
|
||||
.bg-success {
|
||||
background-color: var(--color-success) !important;
|
||||
background-color: var(--color-success) !important;
|
||||
}
|
||||
|
||||
.bd-primary {
|
||||
border: 1px solid var(--color-primary) !important;
|
||||
border: 1px solid var(--color-primary) !important;
|
||||
}
|
||||
|
||||
.bd-light {
|
||||
border: 1px solid var(--color-lightGrey) !important;
|
||||
border: 1px solid var(--color-lightGrey) !important;
|
||||
}
|
||||
|
||||
.bd-dark {
|
||||
border: 1px solid var(--color-darkGrey) !important;
|
||||
border: 1px solid var(--color-darkGrey) !important;
|
||||
}
|
||||
|
||||
.bd-grey {
|
||||
border: 1px solid var(--color-grey) !important;
|
||||
border: 1px solid var(--color-grey) !important;
|
||||
}
|
||||
|
||||
.bd-error {
|
||||
border: 1px solid var(--color-error) !important;
|
||||
border: 1px solid var(--color-error) !important;
|
||||
}
|
||||
|
||||
.bd-success {
|
||||
border: 1px solid var(--color-success) !important;
|
||||
border: 1px solid var(--color-success) !important;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: var(--color-primary) !important;
|
||||
color: var(--color-primary) !important;
|
||||
}
|
||||
|
||||
.text-light {
|
||||
color: var(--color-lightGrey) !important;
|
||||
color: var(--color-lightGrey) !important;
|
||||
}
|
||||
|
||||
.text-dark {
|
||||
color: var(--color-darkGrey) !important;
|
||||
color: var(--color-darkGrey) !important;
|
||||
}
|
||||
|
||||
.text-grey {
|
||||
color: var(--color-grey) !important;
|
||||
color: var(--color-grey) !important;
|
||||
}
|
||||
|
||||
.text-error {
|
||||
color: var(--color-error) !important;
|
||||
color: var(--color-error) !important;
|
||||
}
|
||||
|
||||
.text-success {
|
||||
color: var(--color-success) !important;
|
||||
color: var(--color-success) !important;
|
||||
}
|
||||
|
||||
.text-white {
|
||||
color: #fff !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
/* Position & alignment */
|
||||
.pull-right {
|
||||
float: right !important;
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
.pull-left {
|
||||
float: left !important;
|
||||
float: left !important;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-left {
|
||||
text-align: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.text-right {
|
||||
text-align: right;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.text-justify {
|
||||
text-align: justify;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.text-uppercase {
|
||||
text-transform: uppercase;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.text-lowercase {
|
||||
text-transform: lowercase;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
|
||||
.text-capitalize {
|
||||
text-transform: capitalize;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.is-full-screen {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.is-full-width {
|
||||
width: 100% !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.is-vertical-align {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.is-horizontal-align {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.is-center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.is-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.is-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.is-fixed {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.is-paddingless {
|
||||
padding: 0 !important;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.is-marginless {
|
||||
margin: 0 !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.is-pointer {
|
||||
cursor: pointer !important;
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
.is-rounded {
|
||||
border-radius: 100%;
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.is-hidden {
|
||||
display: none !important;
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 599px) {
|
||||
.hide-xs {
|
||||
display: none !important;
|
||||
}
|
||||
.hide-xs {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) and (max-width: 899px) {
|
||||
.hide-sm {
|
||||
display: none !important;
|
||||
}
|
||||
.hide-sm {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 900px) and (max-width: 1199px) {
|
||||
.hide-md {
|
||||
display: none !important;
|
||||
}
|
||||
.hide-md {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1200px) {
|
||||
.hide-lg {
|
||||
display: none !important;
|
||||
}
|
||||
.hide-lg {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.hide-pr {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
.hide-pr {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
@ -2,11 +2,9 @@
|
||||
@import "_base.css";
|
||||
@import "_grid.css";
|
||||
@import "_form.css";
|
||||
|
||||
@import "_nav.css";
|
||||
@import "_card.css";
|
||||
@import "_tab.css";
|
||||
@import "_tag.css";
|
||||
@import "_dropdown.css";
|
||||
|
||||
@import "_util.css";
|
||||
|
Loading…
Reference in New Issue
Block a user