mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
75 lines
No EOL
1.6 KiB
HTML
75 lines
No EOL
1.6 KiB
HTML
<div class="ag-courses_item">
|
|
<a class="ag-courses-item_link" href="#">
|
|
<div class="ag-courses-item_bg"></div>
|
|
<div class="ag-courses-item_title">You Welcome In Uiverse</div>
|
|
<div class="ag-courses-item_date-box">
|
|
Start:
|
|
<span class="ag-courses-item_date"> 14.11.2023 </span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Bodyhc - Tags: */
|
|
.ag-courses_item {
|
|
margin: auto;
|
|
overflow: hidden;
|
|
border-radius: 28px;
|
|
}
|
|
.ag-courses-item_link {
|
|
display: block;
|
|
padding: 30px 20px;
|
|
background-color: #121212;
|
|
overflow: hidden;
|
|
position: relative;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.ag-courses-item_link:hover,
|
|
.ag-courses-item_link:hover .ag-courses-item_date {
|
|
color: #121212;
|
|
}
|
|
.ag-courses-item_link:hover .ag-courses-item_bg {
|
|
-webkit-transform: scale(10);
|
|
-ms-transform: scale(10);
|
|
transform: scale(10);
|
|
}
|
|
.ag-courses-item_title {
|
|
min-height: 57px;
|
|
margin: 0 0 30px;
|
|
overflow: hidden;
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
color: rgb(255, 255, 255);
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
.ag-courses-item_date-box {
|
|
font-size: 18px;
|
|
color: #fff;
|
|
z-index: 2;
|
|
position: relative;
|
|
}
|
|
.ag-courses-item_date {
|
|
font-weight: bold;
|
|
color: #f9e534;
|
|
-webkit-transition: color 0.5s ease;
|
|
-o-transition: color 0.5s ease;
|
|
transition: color 0.5s ease;
|
|
}
|
|
.ag-courses-item_bg {
|
|
height: 130px;
|
|
width: 100px;
|
|
background-color: #f9b234;
|
|
z-index: 1;
|
|
position: absolute;
|
|
top: -75px;
|
|
right: -75px;
|
|
border-radius: 50%;
|
|
-webkit-transition: all 0.5s ease;
|
|
-o-transition: all 0.5s ease;
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
</style>
|
|
|