Skip to content

Commit

Permalink
v4.0.0 move to CSS instead of Stylus and SCSS
Browse files Browse the repository at this point in the history
  • Loading branch information
mblode committed Dec 15, 2021
1 parent 39925a2 commit b36abb9
Show file tree
Hide file tree
Showing 34 changed files with 1,167 additions and 4,154 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
node_modules
bower_components
_site
_sass
public
_posts
.sass-cache
components
build
tmp/*
Expand Down
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ tests
public
gulpfile.js
_site
_sass
_posts
index.html
components
201 changes: 0 additions & 201 deletions .scss-lint.yml

This file was deleted.

33 changes: 9 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Marx is a CSS stylesheet to be used in any projects (namely small ones). If you
## Key features

- Built atop of Sanitize.css, meaning all browsers render consistently.
- Created using SASS and Stylus preprocessors (Customise all the variables!).
- Responsive and mobile-friendly.
- Clean, beautiful typography.
- Forms, tables, buttons and navigation.
Expand Down Expand Up @@ -45,7 +44,6 @@ If you have cloned the repo or downloaded from .zip, there are a few steps you m

1. Change directory: `cd marx`.
2. Install node modules: `npm install`.
3. Install scss-lint Ruby gem: `gem install scss-lint`.
4. To run gulp: `gulp`.

## Running Github Pages
Expand All @@ -70,31 +68,18 @@ These are the files that are generated from `npm install marx-css`
│ ├── marx.css
│ ├── marx.min.css
│ ├── marx.min.css.map
│ ├── marx.styl.css
│ ├── marx.styl.min.css
│ └── marx.styl.min.css.map
├── gulpfile.js
├── index-stylus.html
├── index.html
├── package.json
├── scss
│ ├── _base.scss
│ ├── _buttons.scss
│ ├── _form.scss
│ ├── _tables.scss
│ ├── _typography.scss
│ ├── _variables.scss
│ └── marx.scss
└── styl
├── _base.styl
├── _buttons.styl
├── _form.styl
├── _sanitize.styl
├── _tables.styl
├── _typography.styl
├── _variables.styl
└── marx.styl
└── src
├── _base.css
├── _buttons.css
├── _form.css
├── _sanitize.css
├── _tables.css
├── _typography.css
├── _variables.css
└── marx.css
```

Expand Down

0 comments on commit b36abb9

Please sign in to comment.