misuzu/assets/less/mio/classes/input/button.less

38 lines
843 B
Text
Raw Normal View History

2018-04-16 02:33:54 +02:00
.input__button {
2018-08-12 15:56:20 +02:00
background-image: linear-gradient(0deg, transparent, #c2affe);
background-color: #9475b2;
2018-08-12 15:56:20 +02:00
font-family: @mio-font-regular;
font-size: 1.1em;
line-height: 1.4em;
padding: 4px 10px;
min-width: 80px;
text-align: center;
cursor: pointer;
transition: background-color .2s, box-shadow .2s;
color: #306;
2018-03-22 02:56:41 +00:00
border: 1px solid #306;
border-radius: 2px;
display: inline-block;
text-decoration: none;
&--disabled {
2018-08-12 15:56:20 +02:00
background-image: linear-gradient(0deg, #888, #aaa);
border-color: #333;
color: #333;
2018-03-22 02:56:41 +00:00
}
&:not(&--disabled) {
&:focus {
2018-08-12 15:56:20 +02:00
box-shadow: inset 0 0 2px 0 #306;
}
2018-03-26 03:55:25 +02:00
&:hover {
background-color: #a586c3;
}
&:active {
background-color: #c2affe;
}
2018-03-26 03:55:25 +02:00
}
2018-03-22 02:56:41 +00:00
}