Sha256: ccab33b0bab82dbf55db12a1b304c52504e84053bfa9cb500177e46872a330a7

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

/* Base Styles - Set HTML element styles here */
* {
  @include box-sizing(border-box);
}
html {
  background: $bg;
}
body {
  font-size:12px;
  line-height:1.231;
  color: $text;
  background: $bg;
}
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:-1em 10px 0 0;   /* So it appears within #main */
  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

2 entries across 2 versions & 1 rubygems

Version Path
speedo-0.4.1 app/assets/stylesheets/speedo/base.css.scss
speedo-0.4.0 app/assets/stylesheets/speedo/base.css.scss