You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
651 B
22 lines
651 B
10 years ago
|
.rc-input(){
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
margin: 0 0;
|
||
|
padding: 4px 10px;
|
||
|
border-radius: 6px 6px;
|
||
|
border: 1px solid #d9d9d9;
|
||
|
background-color: #ffffff;
|
||
|
color: #666;
|
||
|
line-height: 1.5;
|
||
|
-webkit-transform: border 0.3s cubic-bezier(0.35, 0, 0.25, 1), background 0.3s cubic-bezier(0.35, 0, 0.25, 1), box-shadow 0.3s cubic-bezier(0.35, 0, 0.25, 1);
|
||
|
transform: border 0.3s cubic-bezier(0.35, 0, 0.25, 1), background 0.3s cubic-bezier(0.35, 0, 0.25, 1), box-shadow 0.3s cubic-bezier(0.35, 0, 0.25, 1);
|
||
|
|
||
|
&:hover {
|
||
|
border-color: #23c0fa;
|
||
|
}
|
||
|
|
||
|
&:focus {
|
||
|
border-color: #23c0fa;
|
||
|
box-shadow: 0 0 3px #23c0fa;
|
||
|
}
|
||
|
}
|