mirror of
https://github.com/ivabus/www
synced 2024-11-16 06:35:06 +03:00
40 lines
No EOL
802 B
HTML
40 lines
No EOL
802 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: 0.279vw;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
width: 48%;
|
|
height: 2.232vw;
|
|
transition: 0.1s linear;
|
|
}
|
|
|
|
.detail-btn:hover{
|
|
background-color: #8000ff;
|
|
box-shadow: inset 0vw 0vw 0vw 0.223vw #1a1a1a !important;
|
|
}
|
|
|
|
/* Icon Styling */
|
|
|
|
.detail-btn .icon-enter-arrow{
|
|
display: inline-block;
|
|
position: relaitve;
|
|
margin-right: 0.558vw;
|
|
transition: 0.2s ease-in-out;
|
|
}
|
|
|
|
.detail-btn:hover .icon-enter-arrow{
|
|
display: inline-block;
|
|
transform: rotate(-45deg) !important;
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
<a href="/packages/{{- .slug -}}">
|
|
<button class="detail-btn"><i class="icon-enter-arrow"></i>details</button>
|
|
</a> |