Skip to content

Commit b36abb9

Browse files
committed
v4.0.0 move to CSS instead of Stylus and SCSS
1 parent 39925a2 commit b36abb9

34 files changed

+1167
-4154
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
node_modules
33
bower_components
44
_site
5-
_sass
65
public
76
_posts
8-
.sass-cache
97
components
108
build
119
tmp/*

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tests
77
public
88
gulpfile.js
99
_site
10-
_sass
1110
_posts
1211
index.html
1312
components

.scss-lint.yml

Lines changed: 0 additions & 201 deletions
This file was deleted.

README.md

Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Marx is a CSS stylesheet to be used in any projects (namely small ones). If you
1313
## Key features
1414

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

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

5149
## Running Github Pages
@@ -70,31 +68,18 @@ These are the files that are generated from `npm install marx-css`
7068
│ ├── marx.css
7169
│ ├── marx.min.css
7270
│ ├── marx.min.css.map
73-
│ ├── marx.styl.css
74-
│ ├── marx.styl.min.css
75-
│ └── marx.styl.min.css.map
7671
├── gulpfile.js
77-
├── index-stylus.html
7872
├── index.html
7973
├── package.json
80-
├── scss
81-
│ ├── _base.scss
82-
│ ├── _buttons.scss
83-
│ ├── _form.scss
84-
│ ├── _tables.scss
85-
│ ├── _typography.scss
86-
│ ├── _variables.scss
87-
│ └── marx.scss
88-
└── styl
89-
├── _base.styl
90-
├── _buttons.styl
91-
├── _form.styl
92-
├── _sanitize.styl
93-
├── _tables.styl
94-
├── _typography.styl
95-
├── _variables.styl
96-
└── marx.styl
97-
74+
└── src
75+
├── _base.css
76+
├── _buttons.css
77+
├── _form.css
78+
├── _sanitize.css
79+
├── _tables.css
80+
├── _typography.css
81+
├── _variables.css
82+
└── marx.css
9883
9984
```
10085

0 commit comments

Comments
 (0)