Sha256: 39fbe8346edc8004717b6615a0d66f3d8752788eb14ed9cf06c9eb28119e18da

Contents?: true

Size: 1.6 KB

Versions: 5

Compression:

Stored size: 1.6 KB

Contents

/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the top of the
* compiled file, but it's generally better to create a new file per style scope.
*
*= require redditor/redditor
*/

html {
  font: 12px "Lucida Grande", "Lucida Sans Unicode", helvetica, arial, verdana, sans-serif;
}

form.edit_article {
  margin:0 10px;
}

.text-block-input {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=submit] {
  font-size: 2em;
  padding: 0.25em 1.5em;
  display: inline-block;
  background:#ccc;
  cursor: pointer;
  background:-webkit-linear-gradient(top, #fff, #ccc);
  background:-moz-linear-gradient(top, #fff, #ccc);
  background:-o-linear-gradient(top, #fff, #ccc);
  background:linear-gradient(to bottom, #fff, #ccc);
  border-radius: 3px;
  box-shadow: 1px 1px 2px #ccc;
  border: 1px solid #999;
  text-transform: lowercase;
  outline: none;
  &:hover {
    background: -webkit-linear-gradient(top, rgba(#fff, 0.8), rgba(#ccc, 0.8));
    background: -moz-linear-gradient(top, rgba(#fff, 0.8), rgba(#ccc, 0.8));
    background: -o-linear-gradient(top, rgba(#fff, 0.8), rgba(#ccc, 0.8));
    background: linear-gradient(to bottom, rgba(#fff, 0.8), rgba(#ccc, 0.8));
  }
  &:active {
    transform: translateY(1px);
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
redditor-0.1.10 app/assets/stylesheets/redditor/application.css.scss
redditor-0.1.9 app/assets/stylesheets/redditor/application.css.scss
redditor-0.1.8 app/assets/stylesheets/redditor/application.css.scss
redditor-0.1.7 app/assets/stylesheets/redditor/application.css.scss
redditor-0.1.6 app/assets/stylesheets/redditor/application.css.scss