Browse Source

other style for header

update readme
master
HerrHase 6 years ago
parent
commit
3363c8f69e
4 changed files with 10 additions and 16 deletions
  1. +6
    -9
      README.md
  2. +1
    -1
      dest/css/styles.css
  3. +1
    -0
      src/example/components/_nav.scss
  4. +2
    -6
      src/example/site/_header.scss

+ 6
- 9
README.md View File

@ -1,11 +1,11 @@
# Cripsy-Boilerplate # Cripsy-Boilerplate
Flat Sass Boilerplate to give you a amount of Basic Settings, Components, Helpers,
Flat Sass Boilerplate give you a amount of Basic Settings, Components, Helpers,
Mixins and Functions. It uses also the following Libraries, Mixins and Functions. It uses also the following Libraries,
* normalize.css / [https://necolas.github.io/normalize.css/](https://necolas.github.io/normalize.css/) * normalize.css / [https://necolas.github.io/normalize.css/](https://necolas.github.io/normalize.css/)
* reflex-grid / [http://reflexgrid.com/docs/](http://reflexgrid.com/docs/) * reflex-grid / [http://reflexgrid.com/docs/](http://reflexgrid.com/docs/)
* opt / [https://octicons.github.com"](https://octicons.github.com")
* opt / [https://octicons.github.com"](https://octicons.github.com)
Many Boilerplates and also Frameworks, are trying to hard adding styles that Many Boilerplates and also Frameworks, are trying to hard adding styles that
are most time will be overwritten to make it work for you. This causes a loss in are most time will be overwritten to make it work for you. This causes a loss in
@ -21,16 +21,13 @@ can reuse them. But one the other hand it can be really Strange if you overthink
Components are created to give you a Structure and a Basic set of Styles and Components are created to give you a Structure and a Basic set of Styles and
not that they look fancy. The Idea is to extend each Compontent and save up not that they look fancy. The Idea is to extend each Compontent and save up
a Bunch of CSS Code, and so get more Performance and less Errors.
a Bunch of CSS Code and so get more Performance and less Errors.
Of Course is really Fancy to get more Performance and less Errors. Of Course is really Fancy to get more Performance and less Errors.
## Only Include if you need it ## Only Include if you need it
Components and Helpers are organizes as Mixins, that makes it a little easier to Components and Helpers are organizes as Mixins, that makes it a little easier to
add. Also it can be used to create multiples css files for each single site you
need on a site oder
You can order them and structure the output of the CSS-files.
to add Styles you need.
## Getting Started ## Getting Started
### Installation ### Installation
@ -62,8 +59,8 @@ To overwrite defaults simple adding your own config-file before import crispy:
### npm ### npm
There are a few npm scripts in the package.json that you can you use to build
your styles. Copy them and change the path. There is nothing special about them.
There are a few npm scripts in the package.json that you can you use them to build
your scss. Copy them and change the path.
### Example ### Example


+ 1
- 1
dest/css/styles.css
File diff suppressed because it is too large
View File


+ 1
- 0
src/example/components/_nav.scss View File

@ -17,6 +17,7 @@
ul { ul {
margin-left: 0; margin-left: 0;
list-style: none;
} }
@include crispy__media-sm() { @include crispy__media-sm() {


+ 2
- 6
src/example/site/_header.scss View File

@ -10,19 +10,15 @@
.header { .header {
padding: 8px 0 0; padding: 8px 0 0;
margin: 0 0 20px; margin: 0 0 20px;
background-color: $crispy__color-primary;
border-bottom: 1px solid darken($crispy__color-primary, 10%);
@include crispy__media-sm() { @include crispy__media-sm() {
margin: 0 0 30px;
margin: 0 0 60px;
} }
&__title { &__title {
color: white;
margin: toEm(0 0 3px);
margin: toEm(10px 0 0);
a { a {
color: white;
text-decoration: none; text-decoration: none;
} }
} }


Loading…
Cancel
Save