Fixed button class styles, added button-style class
This commit is contained in:
parent
10212860f7
commit
5f56615cae
@ -84,13 +84,13 @@ buttons
|
|||||||
.button {
|
.button {
|
||||||
height: auto;
|
height: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
padding: 5px 20px;
|
padding: 0;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
border: 0;
|
border: 0;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
cursor: none;
|
cursor: inherit;
|
||||||
letter-spacing: inherit;
|
letter-spacing: inherit;
|
||||||
text-align: inherit;
|
text-align: inherit;
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
@ -99,6 +99,18 @@ buttons
|
|||||||
color: inherit;
|
color: inherit;
|
||||||
border-color: inherit;
|
border-color: inherit;
|
||||||
}
|
}
|
||||||
|
.button-style {
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-radius: 3px;
|
||||||
|
-webkit-transition: opacity .4s ease-in-out;
|
||||||
|
-moz-transition: opacity .4s ease-in-out;
|
||||||
|
-ms-transition: opacity .4s ease-in-out;
|
||||||
|
-o-transition: opacity .4s ease-in-out;
|
||||||
|
transition: opacity .4s ease-in-out;
|
||||||
|
}
|
||||||
|
.button-style:hover {
|
||||||
|
opacity: .9;
|
||||||
|
}
|
||||||
|
|
||||||
/* =====================================================================================================================
|
/* =====================================================================================================================
|
||||||
Images
|
Images
|
||||||
|
Loading…
Reference in New Issue
Block a user