20 lines
263 B
CSS
20 lines
263 B
CSS
|
button {
|
||
|
border-radius: 0;
|
||
|
outline: none;
|
||
|
transition-duration: 0;
|
||
|
padding: 0;
|
||
|
margin-top: 0;
|
||
|
|
||
|
border: 1px solid #222;
|
||
|
background: #333;
|
||
|
|
||
|
color: #fff;
|
||
|
font: 14px "JetBrains Mono NL";
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
border: 1px solid #4c7899;
|
||
|
background: #285577;
|
||
|
}
|
||
|
|