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

23 lines
491 B
HTML
Raw Normal View History

2022-09-14 19:17:59 +03:00
<style>
.detail-btn-large{
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: 75px;
2022-09-14 19:19:57 +03:00
transition: 0.1s ease-in-out;
2022-09-14 19:17:59 +03:00
}
.detail-btn-large:hover{
background-color: #8000ff;
box-shadow: inset 0px 0px 0px 8px #1a1a1a !important;
}
</style>
<button href="#" class="detail-btn-large">details</button>