mirror of
https://github.com/ivabus/www
synced 2024-11-16 00:35:07 +03:00
22 lines
468 B
HTML
22 lines
468 B
HTML
<style>
|
|
.detail-btn{
|
|
display:inline-block;
|
|
font-family: "pp-neue-machina", sans-serif;
|
|
background-color: #1a1a1a;
|
|
border: .5px solid #ffffff;
|
|
color: #fff;
|
|
padding-top: 5px;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
width: 35%;
|
|
height: 40px;
|
|
transition: 0.1s linear;
|
|
}
|
|
|
|
.detail-btn:hover{
|
|
background-color: #8000ff;
|
|
box-shadow: inset 0px 0px 0px 4px #1a1a1a !important;
|
|
}
|
|
</style>
|
|
|
|
<button href="#" class="detail-btn">details</button>
|