mirror of
https://github.com/ivabus/www
synced 2024-11-16 02:15:06 +03:00
23 lines
468 B
HTML
23 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>
|