Skip to content

Commit

Permalink
Integrate more css rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jan 2, 2016
1 parent a715277 commit d5bf33e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 40 deletions.
39 changes: 15 additions & 24 deletions assets/scss/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
========================================================================== */

::selection {
background: $selection-color;
color: $selection-color;
background: #b3d5f3;
text-shadow: none;
}

h1,
Expand Down Expand Up @@ -132,6 +134,10 @@ h6 a {
background: $header-color no-repeat center center;
background-size: cover;

h1 {
background-color: $blog-description-color;
}

@include breakpoint(400px) {
width: 100%;
height: 200px;
Expand Down Expand Up @@ -941,24 +947,17 @@ li.nav-contacto > a {
}
}

/* Facebook Comments */

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget span iframe[style] {
min-width: 100% !important;
width: 100% !important;
}

/* Buttons */
/* ==========================================================================
Buttons
========================================================================== */

.button-green,
.button-add,
.button-add[type="submit"] {
transition: all 0.5s ease;
background: white;
border: 2px solid $green;
color: $green;
border: 2px solid $feature-one-color;
color: $feature-one-color;
}

.button-green:not(.button-loading):hover,
Expand All @@ -969,19 +968,15 @@ li.nav-contacto > a {
.button-add[type="submit"]:not(.button-loading):hover,
.ghost-pro-ad:hover [type="submit"].button-add:not(.button-loading),
.button-add[type="submit"]:not(.button-loading):focus {
background: $green;
background: $feature-one-color;
color: white;
}

.modal-close {
color: $red;
}

.button-save,
.button-blue,
button[type="submit"],
input[type="submit"] {
background: $blue;
background: $feature-two-color;
box-shadow: none;
}

Expand All @@ -993,9 +988,5 @@ button[type="submit"]:not(.button-loading):hover,
button[type="submit"]:not(.button-loading):focus,
input[type="submit"]:not(.button-loading):hover,
input[type="submit"]:not(.button-loading):focus {
background: darken($blue, 10%);
}

.blog-header h1 {
background-color: rgba(#8BC34A, .7);
background: darken($feature-two-color, 10%);
}
12 changes: 0 additions & 12 deletions assets/scss/reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -326,18 +326,6 @@ body {
font-size: 1.3rem;
}

::-moz-selection {
color: #242628;
background: #b3d5f3;
text-shadow: none;
}

::selection {
color: #242628;
background: #b3d5f3;
text-shadow: none;
}

h1,
h2,
h3,
Expand Down
17 changes: 13 additions & 4 deletions assets/scss/theme.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

$blog-description-color : rgba(#8BC34A, .7);
$blog-logo-color : rgba(220, 240, 240, 0.7);

$subscribe-banner-color : $green;
$selection-color : lighten($orange, 36%);
$tag-color : rgba($orange, .7);
Expand All @@ -8,9 +11,15 @@ $feature-two-color : $blue;

$link-hover-color : $blue;

$blog-logo-color : rgba(220, 240, 240, 0.7);

$header-color : #303538;

/* widgets */
/** advertising **/
/* ==========================================================================
Custom
========================================================================== */

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget span iframe[style] {
min-width: 100% !important;
width: 100% !important;
}

0 comments on commit d5bf33e

Please sign in to comment.