www/src/layouts/partials/detail-btn.html

23 lines
468 B
HTML
Raw Normal View History

2022-09-09 21:58:30 +03:00
<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>