Browse Source

adding styles

master
HerrHase 6 years ago
parent
commit
63ae6fb9db
4 changed files with 18 additions and 5 deletions
  1. +7
    -3
      dest/css/styles.css
  2. +1
    -1
      dest/css/styles.min.css
  3. +4
    -0
      dest/index.html
  4. +6
    -1
      src/scss/example.scss

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


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


+ 4
- 0
dest/index.html View File

@ -40,6 +40,7 @@
<div class="col-12 col-sm-3"> <div class="col-12 col-sm-3">
<nav class="nav"> <nav class="nav">
<ul class="margin-top-0x"> <ul class="margin-top-0x">
<li><a href="#introduction">Introduction</a></li>
<li><a href="#npm">npm</a></li> <li><a href="#npm">npm</a></li>
<li><a href="#get-started">Get Started</a></li> <li><a href="#get-started">Get Started</a></li>
<li><a href="#typography">Typography</a></li> <li><a href="#typography">Typography</a></li>
@ -53,6 +54,9 @@
</nav> </nav>
</div> </div>
<div class="col-12 col-sm-9"> <div class="col-12 col-sm-9">
<h2 id="introduction" class="lead">
Introduction
</h2>
<p> <p>
Why? There are so many! Yes, of Course, but this is not a Framework, it is a Boilerplate, more simple. I have tried to build a minimalistic sass. Why? There are so many! Yes, of Course, but this is not a Framework, it is a Boilerplate, more simple. I have tried to build a minimalistic sass.
</p> </p>


+ 6
- 1
src/scss/example.scss View File

@ -20,10 +20,15 @@
margin: 0 auto; margin: 0 auto;
} }
.lead {
margin-top: -(toEm(5px));
}
.header { .header {
padding: 8px 0 0; padding: 8px 0 0;
margin: 0 0 20px; margin: 0 0 20px;
background-color: $crispy__color-primary; 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 30px;
@ -49,7 +54,7 @@
// button // button
.button { .button {
border: 1px solid $crispy__color-primary;
border: 1px solid darken($crispy__color-primary, 10%);
background-color: $crispy__color-primary; background-color: $crispy__color-primary;
color: white; color: white;


Loading…
Cancel
Save