Sha256: 5f63b9d4e9e9696026292a7001307eca736eb3f221a8224cd10b307a5eabddf4

Contents?: true

Size: 1.22 KB

Versions: 4

Compression:

Stored size: 1.22 KB

Contents

/* Base Styles - Set HTML element styles here */
* {
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}
body {
  color: $text;
  background: $bg;
  font-size:12px;
  line-height:1.231;
}
a, a:visited:not(.btn), .link  { 
  color: $link; 
  text-decoration: none;
  cursor:pointer;
}
a:hover, .link:hover {
  color: $hover;
}
ul, ol {
  margin: 0;
  padding: 0;
  li {
    list-style: none;
  }
}
h1,h3,h5 {
  font-weight:normal;
  font-weight:200;
}
h2,h4,h6{
  font-weight:normal;
}

input:not(.btn), textarea {
  height:auto;
  border:1px solid #999;
  @include border-radius(3px);
  padding:5px;
  @include box-shadow(inset 0 1px 1px rgba(0,0,0,0.2));
  &:focus {
    border-color:#acd;
    @include box-shadow(0 0 3px rgba(150,180,230,1));
  }
}
footer {
  position:relative;
  margin:-1.8em 10px 0 0;   /* So it appears at the bottom of the right column and is not lost in web-app mode */
  float: right;
  font-size: 0.8em;
  opacity:0.5;
}


/* No-JS */
.no-js body {
  margin-top:30px;
}
#noscript_warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 0 6px;
  text-align: center;
  font-size: 120%;
  font-weight: bold;
  color: #fff;
  background:#AE0000;
  z-index: 101;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
speedo-0.3.2 app/assets/stylesheets/speedo/base.css.scss
speedo-0.3.1 app/assets/stylesheets/speedo/base.css.scss
speedo-0.3.0 app/assets/stylesheets/speedo/base.css.scss
speedo-0.2.5 app/assets/stylesheets/speedo/base.css.scss