forked from lassejlv/HypeStyle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
1,802 additions
and
6,227 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
File renamed without changes.
File renamed without changes.
10 changes: 9 additions & 1 deletion
10
docs/docs/utilities/alignment.md → docs/docs/utilities/typography/alignment.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Text Transform | ||
--- | ||
|
||
Text transform |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: Width | ||
--- | ||
|
||
Width is a CSS utility that allows you to set the width of an element. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="../dist/css/hypestyle.min.css" /> | ||
<title>Document</title> | ||
</head> | ||
<body class="bg-gray text-center mt-3"> | ||
<button class="btn btn-primary text-white bs-sm tr-sm">Click me</button> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
const { src, dest, watch, series } = require("gulp"); | ||
const sass = require("gulp-sass")(require("sass")); | ||
const { src, dest, watch, series } = require('gulp') | ||
const sass = require('gulp-sass')(require('sass')) | ||
cssFormat = require('gulp-css-format') | ||
|
||
function buildStyles() { | ||
return src("src/**/*.scss").pipe(sass()).pipe(dest("dist/css")); | ||
return src('src/**/*.scss') | ||
.pipe(sass()) | ||
.pipe(cssFormat({ indent: 1, hasSpace: true })) | ||
.pipe(dest('dist/css')) | ||
} | ||
|
||
function watchTask() { | ||
watch(["src/**/*.scss"], buildStyles); | ||
watch(['src/**/*.scss'], buildStyles) | ||
} | ||
|
||
exports.default = series(buildStyles, watchTask); | ||
exports.default = series(buildStyles, watchTask) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
{ | ||
"name": "hypestyle", | ||
"version": "0.1.4", | ||
"main": "index.js", | ||
"repository": "https://github.com/lassev05/HypeStyle.git", | ||
"homepage": "https://hypestyle.netlify.app/", | ||
"author": "devlassev <vestergaardlasse2@gmail.com>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"glob-parent": "5.1.2", | ||
"graceful-fs": "^4.2.8", | ||
"gulp": "^4.0.2", | ||
"gulp-sass": "^5.0.0", | ||
"lodash": "4.17.21", | ||
"lodash.template": "4.5.0", | ||
"minimatch": "3.0.2", | ||
"sass": "^1.43.4", | ||
"stylelint-config-standard": "^24.0.0", | ||
"vuepress-theme-default-prefers-color-scheme": "^2.0.0" | ||
}, | ||
"scripts": { | ||
"css": "gulp", | ||
"vuepress:dev": "npx vuepress dev docs", | ||
"build": "npx vuepress build docs", | ||
"publish": "docs/.vuepress/dist", | ||
"prepare": "husky install" | ||
}, | ||
"devDependencies": { | ||
"@vuepress/plugin-back-to-top": "^1.8.2", | ||
"eslint": "^8.3.0", | ||
"husky": "^7.0.4" | ||
} | ||
"name": "hypestyle", | ||
"version": "0.1.4", | ||
"main": "index.js", | ||
"repository": "https://github.com/lassev05/HypeStyle.git", | ||
"homepage": "https://hypestyle.netlify.app/", | ||
"author": "devlassev <vestergaardlasse2@gmail.com>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"glob-parent": "5.1.2", | ||
"graceful-fs": "^4.2.8", | ||
"gulp": "^4.0.2", | ||
"gulp-sass": "^5.0.0", | ||
"lodash": "4.17.21", | ||
"lodash.template": "4.5.0", | ||
"minimatch": "3.0.2", | ||
"sass": "^1.43.4", | ||
"stylelint-config-standard": "^24.0.0", | ||
"vuepress-theme-default-prefers-color-scheme": "^2.0.0" | ||
}, | ||
"scripts": { | ||
"css": "gulp", | ||
"dev": "npx vuepress dev docs", | ||
"build": "npx vuepress build docs", | ||
"publish": "docs/.vuepress/dist", | ||
"prepare": "husky install" | ||
}, | ||
"devDependencies": { | ||
"@vuepress/plugin-back-to-top": "^1.8.2", | ||
"eslint": "^8.3.0", | ||
"gulp-css-format": "^0.1.2", | ||
"husky": "^7.0.4" | ||
} | ||
} |
Oops, something went wrong.