milligram/src/_Button.sass

76 lines
1.5 KiB
Sass
Raw Permalink Normal View History

2015-12-26 01:53:09 +00:00
// Button
//
.button,
button,
2015-12-27 17:43:13 +00:00
input[type='button'],
2015-12-26 01:53:09 +00:00
input[type='reset'],
2015-12-27 17:43:13 +00:00
input[type='submit']
2020-05-17 21:41:05 +00:00
background-color: $color-primary
border: .1rem solid $color-primary
border-radius: .4rem
color: $color-initial
cursor: pointer
display: inline-block
font-size: 1.1rem
font-weight: 700
height: 3.8rem
letter-spacing: .1rem
line-height: 3.8rem
padding: 0 3.0rem
text-align: center
text-decoration: none
text-transform: uppercase
white-space: nowrap
2015-12-26 01:53:09 +00:00
2020-05-17 21:41:05 +00:00
&:focus,
&:hover
2021-03-21 07:48:28 +00:00
background-color: $color-tertiary
border-color: $color-tertiary
2020-05-17 21:41:05 +00:00
color: $color-initial
outline: 0
2015-12-26 01:53:09 +00:00
2020-05-17 21:41:05 +00:00
&[disabled]
cursor: default
opacity: .5
2016-01-03 19:20:28 +00:00
2020-05-17 21:41:05 +00:00
&:focus,
&:hover
2021-03-21 07:48:28 +00:00
background-color: $color-tertiary
border-color: $color-tertiary
2016-01-03 19:20:28 +00:00
2020-05-17 21:41:05 +00:00
&.button-outline
background-color: transparent
color: $color-primary
2015-12-26 01:53:09 +00:00
2020-05-17 21:41:05 +00:00
&:focus,
&:hover
background-color: transparent
2021-03-21 07:48:28 +00:00
border-color: $color-tertiary
color: $color-tertiary
2015-12-26 01:53:09 +00:00
2020-05-17 21:41:05 +00:00
&[disabled]
2016-01-31 06:28:58 +00:00
2020-05-17 21:41:05 +00:00
&:focus,
&:hover
border-color: inherit
2021-03-21 07:48:28 +00:00
color: $color-tertiary
2016-01-03 19:20:28 +00:00
2020-05-17 21:41:05 +00:00
&.button-clear
background-color: transparent
border-color: transparent
color: $color-primary
2015-12-26 01:53:09 +00:00
2020-05-17 21:41:05 +00:00
&:focus,
&:hover
background-color: transparent
border-color: transparent
2021-03-21 07:48:28 +00:00
color: $color-tertiary
2016-01-03 19:20:28 +00:00
2020-05-17 21:41:05 +00:00
&[disabled]
2016-01-31 06:28:58 +00:00
2020-05-17 21:41:05 +00:00
&:focus,
&:hover
2021-03-21 07:48:28 +00:00
color: $color-tertiary