summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-04 18:48:38 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-04 18:48:38 -0500
commitcde35e3461bf49a4b32aefca7b8556e344c8090e (patch)
treede105e188b5e346043795b616939030fa7a7a37e /app/assets
parent28f7378d7d2bc2d79fa52f3dcedb734a543f69be (diff)
login/logout buttons
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/custom.css.scss20
1 files changed, 8 insertions, 12 deletions
diff --git a/app/assets/stylesheets/custom.css.scss b/app/assets/stylesheets/custom.css.scss
index faecdce..0599a93 100644
--- a/app/assets/stylesheets/custom.css.scss
+++ b/app/assets/stylesheets/custom.css.scss
@@ -7,17 +7,13 @@ header > nav {
#log-buttons {
margin-top: 8px;
- }
- .signup {
- @extend .btn;
- @extend .btn-success;
- }
- .signin {
+ form { display: inline; }
+ a, input[type="submit"] {
@extend .btn;
- @extend .btn-info;
+ &.user { @extend .btn-info; }
+ &.signup { @extend .btn-success; }
+ &.signin { @extend .btn-info; }
+ &.signout { @extend .btn-danger; }
}
- .signout {
- @extend .btn;
- @extend .btn-danger;
- }
- } \ No newline at end of file
+ }
+}