2018-04-16 00:33:54 +00:00
|
|
|
.input__button {
|
2018-03-22 02:56:41 +00:00
|
|
|
font-family: 'visitor1';
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 1.25em;
|
|
|
|
color: #fff;
|
2018-04-17 21:50:21 +00:00
|
|
|
background-color: #9475b2;
|
2018-03-22 02:56:41 +00:00
|
|
|
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;
|
|
|
|
|
2018-04-17 21:50:21 +00:00
|
|
|
&--small {
|
|
|
|
font-size: 15px;
|
2018-03-22 02:56:41 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 21:50:21 +00:00
|
|
|
&--disabled {
|
|
|
|
background-color: #888;
|
|
|
|
border-color: #444;
|
|
|
|
box-shadow: inset 0 0 0 1px #555;
|
2018-03-22 02:56:41 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 21:50:21 +00:00
|
|
|
&:not(&--disabled) {
|
|
|
|
&:focus {
|
|
|
|
border-color: #407;
|
|
|
|
}
|
2018-03-26 01:55:25 +00:00
|
|
|
|
2018-04-17 21:50:21 +00:00
|
|
|
&:hover {
|
|
|
|
background: #A586c3;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
border-color: #306;
|
|
|
|
background: #8364a1;
|
|
|
|
}
|
2018-03-26 01:55:25 +00:00
|
|
|
}
|
2018-03-22 02:56:41 +00:00
|
|
|
}
|