1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-11-23 19:36:53 +00:00

bit styling

This commit is contained in:
devfake 2015-06-20 17:28:26 +02:00
parent b387a67e4f
commit c29e398eb7

View File

@ -31,6 +31,11 @@
height: 48px; height: 48px;
@include mainGradient(); @include mainGradient();
@include transition(box-shadow);
&:hover {
box-shadow: 0 0 10px 0 rgba($main, .8);
}
} }
.btn-action { .btn-action {
@ -60,15 +65,36 @@
text-decoration: none; text-decoration: none;
@include secondGradient(); @include secondGradient();
@include transition();
}
.btn-second {
&:hover {
box-shadow: 0 0 10px 0 rgba(#fff, .1);
}
} }
.btn-none { .btn-none {
background: transparent; background: transparent;
color: #8798ac; color: #8798ac;
@include transition(color);
&:hover { &:hover {
color: #fff; color: #fff;
} }
}
::-webkit-input-placeholder {
color: darken(#8798ac, 10%);
}
:-moz-placeholder {
color: darken(#8798ac, 10%);
opacity: 1;
}
::-moz-placeholder {
color: darken(#8798ac, 10%);
opacity: 1;
}
:-ms-input-placeholder {
color: darken(#8798ac, 10%);
} }