www/src/layouts/partials/package-thumbnail.html

34 lines
662 B
HTML
Raw Normal View History

2022-09-15 23:13:19 +03:00
<div class="card" style="width: 100%">
<img src="/Images/package-thumb-1.jpg" class="card-img-top" alt="..." style="width:100%; height:100%;">
<div class="card-body">
<p class="card-text">V2.35 >45 installs</p>
{{- partial "detail-btn.html" . -}}
</div>
</div>
<style>
.card{
background: none;
border-radius: 0px !important;
border: 1px solid #949494;
2022-09-16 19:18:34 +03:00
padding: 1.674vw;
2022-09-15 23:13:19 +03:00
}
.card-body{
border-radius: 0px !important;
2022-09-16 19:18:34 +03:00
padding: 0vw;
2022-09-15 23:13:19 +03:00
}
.card-img-top{
border-radius: 0px;
2022-09-16 19:18:34 +03:00
margin-bottom: 1.674vw;
2022-09-15 23:13:19 +03:00
}
.card-text{
2022-09-16 19:18:34 +03:00
font-size: 0.781vw;
2022-09-15 23:13:19 +03:00
float:left;
position: relative;
2022-09-16 19:18:34 +03:00
top:0.502vw;
2022-09-15 23:13:19 +03:00
}
</style>