1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00

pull from origin repo, removed dist/

This commit is contained in:
nicholaswmin 2019-03-12 18:27:33 +02:00
commit d8e941bcd4
6 changed files with 13 additions and 12 deletions

View File

@ -4,8 +4,8 @@
A really small CSS framework A really small CSS framework
<br><br> <br><br>
<img src="https://img.shields.io/npm/v/chota.svg"> <img src="https://img.shields.io/npm/v/chota.svg">
<img src="https://img.shields.io/npm/dt/chota.svg"> <a href="https://www.npmjs.com/package/chota"><img src="https://img.shields.io/npm/dt/chota.svg"></a>
<img src="https://img.shields.io/github/issues/jenil/chota.svg"> <a href="https://github.com/jenil/chota/issues"><img src="https://img.shields.io/github/issues/jenil/chota.svg"></a>
</p> </p>
<br> <br>

1
dist/chota.css vendored

File diff suppressed because one or more lines are too long

View File

@ -5,9 +5,9 @@
"main": "dist/chota.min.css", "main": "dist/chota.min.css",
"scripts": { "scripts": {
"start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'", "start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
"build": "rm -r dist/ && yarn postcss && NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c", "build": "rm -r dist/ && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c",
"postcss": "postcss ./src/chota.css -d dist/", "postcss": "postcss ./src/chota.css -d dist/",
"watch": "NODE_ENV=development yarn postcss -w", "watch": "cross-env NODE_ENV=development yarn postcss -w",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"keywords": [ "keywords": [
@ -26,12 +26,13 @@
"url": "https://github.com/jenil/chota/issues" "url": "https://github.com/jenil/chota/issues"
}, },
"devDependencies": { "devDependencies": {
"autoprefixer": "^9.0.1", "autoprefixer": "^9.4.2",
"browser-sync": "^2.18.8", "browser-sync": "^2.26.3",
"cssnano": "^4.0.4", "cross-env": "^5.2.0",
"postcss-cli": "^6.0.0", "cssnano": "^4.1.7",
"postcss-cli": "^6.0.1",
"postcss-csso": "^3.0.0", "postcss-csso": "^3.0.0",
"postcss-import": "^11.1.0" "postcss-import": "^12.0.1"
}, },
"files": [ "files": [
"src/", "src/",

View File

@ -80,6 +80,7 @@ button {
text-decoration: none; text-decoration: none;
transform: scale(1); transform: scale(1);
display: inline-block; display: inline-block;
cursor: pointer;
} }
.grouped { .grouped {

View File

@ -50,7 +50,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
padding: 1rem 2rem; padding: 1rem 2rem;
color: #555; color: var(--color-darkGrey);
} }
.nav .active:not(.button) { .nav .active:not(.button) {

View File

@ -17,7 +17,7 @@
.tabs > a.active, .tabs > a.active,
.tabs > a:hover { .tabs > a:hover {
opacity: 1; opacity: 1;
border-bottom: 2px solid #555; border-bottom: 2px solid var(--color-darkGrey);
} }
.tabs > a.active { .tabs > a.active {