diff options
author | tkimia <tkimia@purdue.edu> | 2014-04-22 00:38:12 -0400 |
---|---|---|
committer | tkimia <tkimia@purdue.edu> | 2014-04-22 00:38:12 -0400 |
commit | 594f1388802476b236e8eaa622fbb5aec181a0a0 (patch) | |
tree | 9992480b9d2fe1a0ad5677eff8fed56f17c38816 /app/assets | |
parent | 25d8d625e79556e29f41d1d9982747716abf98e7 (diff) |
styled captcha and notices
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/custom.css.scss | 8 | ||||
-rw-r--r-- | app/assets/stylesheets/scaffolds.css.scss | 9 | ||||
-rw-r--r-- | app/assets/stylesheets/users.css.scss | 7 |
3 files changed, 16 insertions, 8 deletions
diff --git a/app/assets/stylesheets/custom.css.scss b/app/assets/stylesheets/custom.css.scss index 1931c0d..d7f1698 100644 --- a/app/assets/stylesheets/custom.css.scss +++ b/app/assets/stylesheets/custom.css.scss @@ -26,7 +26,7 @@ a, input[type="submit"] { &.signin { @extend .btn-warning; } &.signout { @extend .btn-danger; } &.server { @extend .btn-danger; } - font-weight: bold; + font-weight: bold !important; } @@ -74,10 +74,4 @@ p.errors { font-size: 12px; list-style: square; } -} - - -#notice { - text-align: center; - font-weight: bold; }
\ No newline at end of file diff --git a/app/assets/stylesheets/scaffolds.css.scss b/app/assets/stylesheets/scaffolds.css.scss index dd8c80e..fd2a1fb 100644 --- a/app/assets/stylesheets/scaffolds.css.scss +++ b/app/assets/stylesheets/scaffolds.css.scss @@ -69,10 +69,17 @@ div { } #notice { - color: green; background-color: rgba(0,0,0,0.5); border-radius: 7px; padding: 10px; + width: 80%; + margin: 0px auto; + text-align: center; + + p{ + color: lightgreen !important; + font-weight: bold; + } } .field_with_errors { diff --git a/app/assets/stylesheets/users.css.scss b/app/assets/stylesheets/users.css.scss index 1efc835..3453a55 100644 --- a/app/assets/stylesheets/users.css.scss +++ b/app/assets/stylesheets/users.css.scss @@ -1,3 +1,10 @@ // Place all the styles related to the users controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: http://sass-lang.com/ + + +/*** FOR NEW USER - AKA SIGN UP ***/ +.simple_captcha { + background-color: rgba(255, 255, 255, 0.7); + margin: 10px 0px; +}
\ No newline at end of file |