Sha256: ba9d64d22328792c7ed95db9b57c92f8482264604fd4881e502881dbc3209d65

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Basic site structural styling. 
 * 
 * Designed and built @kurenn  
 */

*, 
*:after, 
*:before { 
  @include box-sizing(border-box);
}

html {
  font-family: $font-family;
}

body {
  font-size: $base-font-size;
  line-height: $base-line-height;
  color: $base-font-color;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: $base-font-weight;
}

a {
  text-decoration: none;
  color: $link-color;
}

.noscroll {
  overflow: hidden;
}

html, body {
  background-color: $bg-color;
  height: 100%;
  overflow: hidden;
}

hr {
  clear: both;
  margin: 1.25em 0 1.875em;
  height: 0;
  border: solid $hr-color;
  border-width: 1px 0 0;
}

.link {
  color: $link-color !important;

  &:hover {
    text-decoration: underline;
  }
}

.container-center {
  width: $container-center-width;
  margin: 0 auto;
  @include clearfix();
}

/* Blockquote */
/*----------------------------*/
blockquote {
  color: $blockquote-color;
  font-style: italic;
  line-height: 1.8em;
  border-left: 5px solid $blockquote-border-color;
  padding-left: 1.5em
}

/* Helper classes */
/*----------------------------*/
.clearfix {
  @include clearfix;
}

.hide {
  display: none;
}

.help-block {
  color: #666;
  display: block;
}

//Floats
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
furatto-0.0.3 app/assets/stylesheets/furatto/_base.scss
furatto-0.0.2 vendor/assets/stylesheets/furatto/_base.scss