diff options
| author | mo khan <mo@mokhan.ca> | 2015-02-02 21:34:28 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-02-02 21:34:28 -0700 |
| commit | 543b37a327d8ad70cd2c46666759f5fae06f6c32 (patch) | |
| tree | 6c24e4dea87d79cc7e7bb93720d2edd0999adac0 /app/assets/stylesheets | |
| parent | 013bcebf8a96b9047317eed674a17c7bc375093f (diff) | |
create scaffold for events.
Diffstat (limited to 'app/assets/stylesheets')
| -rw-r--r-- | app/assets/stylesheets/events.scss | 3 | ||||
| -rw-r--r-- | app/assets/stylesheets/scaffolds.scss | 69 |
2 files changed, 72 insertions, 0 deletions
diff --git a/app/assets/stylesheets/events.scss b/app/assets/stylesheets/events.scss new file mode 100644 index 0000000..e975d96 --- /dev/null +++ b/app/assets/stylesheets/events.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Events controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/scaffolds.scss b/app/assets/stylesheets/scaffolds.scss new file mode 100644 index 0000000..6ec6a8f --- /dev/null +++ b/app/assets/stylesheets/scaffolds.scss @@ -0,0 +1,69 @@ +body { + background-color: #fff; + color: #333; + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +p, ol, ul, td { + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +pre { + background-color: #eee; + padding: 10px; + font-size: 11px; +} + +a { + color: #000; + &:visited { + color: #666; + } + &:hover { + color: #fff; + background-color: #000; + } +} + +div { + &.field, &.actions { + margin-bottom: 10px; + } +} + +#notice { + color: green; +} + +.field_with_errors { + padding: 2px; + background-color: red; + display: table; +} + +#error_explanation { + width: 450px; + border: 2px solid red; + padding: 7px; + padding-bottom: 0; + margin-bottom: 20px; + background-color: #f0f0f0; + h2 { + text-align: left; + font-weight: bold; + padding: 5px 5px 5px 15px; + font-size: 12px; + margin: -7px; + margin-bottom: 0px; + background-color: #c00; + color: #fff; + } + ul li { + font-size: 12px; + list-style: square; + } +} |
