Basic button styles
This commit is contained in:
parent
ebbe52c81d
commit
a5a77ac668
@ -6,3 +6,27 @@ div.button-group + button,
|
|||||||
div.button-group + div.button-group {
|
div.button-group + div.button-group {
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
button {
|
||||||
|
padding: 0.4rem 0.8rem 0.3rem;
|
||||||
|
border: 1px solid $dark-grey-2;
|
||||||
|
border-radius: 0.2em;
|
||||||
|
background-color: #fff;
|
||||||
|
color: $dark-grey-2;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: $dark-grey-2;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:disabled,
|
||||||
|
&:disabled:hover {
|
||||||
|
border-color: $dark-grey-3;
|
||||||
|
background-color: #fff;
|
||||||
|
color: $dark-grey-3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
6
app/styles/_resets.scss
Normal file
6
app/styles/_resets.scss
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
* {
|
||||||
|
-moz-outline: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
:focus { outline:none; }
|
||||||
|
::-moz-focus-inner { border: 0; }
|
@ -1,12 +1,8 @@
|
|||||||
@import "bourbon";
|
@import "bourbon";
|
||||||
|
@import "resets";
|
||||||
@import "colors";
|
@import "colors";
|
||||||
@import "layout";
|
@import "layout";
|
||||||
|
|
||||||
* {
|
|
||||||
-moz-outline: none;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user