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

30 lines
582 B
Text
Raw Normal View History

2018-03-22 02:56:41 +00:00
.mio__input__button {
font-family: 'visitor1';
font-size: 20px;
line-height: 1.25em;
color: #fff;
background: #9475b2;
border: 1px solid #306;
box-shadow: inset 0 0 0 1px #643b8c;
border-radius: 2px;
padding: 1px 10px;
transition: background .2s, border-color .2s;
cursor: pointer;
text-align: left;
display: inline-block;
text-decoration: none;
&:focus {
border-color: #407;
}
&:hover {
background: #A586c3;
}
&:active {
border-color: #306;
background: #8364a1;
}
}