fix linter
Gitea Actions Demo / build_and_push (push) Successful in 1m8s
Details
Gitea Actions Demo / build_and_push (push) Successful in 1m8s
Details
This commit is contained in:
parent
2253d00caa
commit
d4b64886c9
|
|
@ -47,104 +47,63 @@
|
|||
initWorkouts();
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.image-container {
|
||||
cursor: pointer;
|
||||
height: 300px;
|
||||
width: 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto;
|
||||
background-position: center center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
.image-container img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
@media (min-width: 1300px) {
|
||||
.image-container::before,
|
||||
.image-container::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 24%;
|
||||
height: 300px;
|
||||
background-image: inherit;
|
||||
background-size: inherit;
|
||||
filter: blur(10px);
|
||||
}
|
||||
|
||||
.image-container::before {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.image-container::after {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.image-container::before {
|
||||
left: 0;
|
||||
background-position: left center;
|
||||
}
|
||||
|
||||
.image-container:after {
|
||||
right: 0;
|
||||
background-position: right center;
|
||||
}
|
||||
|
||||
<style>
|
||||
.image-container {
|
||||
cursor: pointer;
|
||||
height: 300px;
|
||||
width: 100%;
|
||||
background-position: 50% 50%;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
.news-feed {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.news-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 1rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||
transition: transform 0.2s ease-in-out;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.news-item-header {
|
||||
cursor: pointer;
|
||||
|
||||
.news-feed {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
}
|
||||
.news-item-icon {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.news-item h3 {
|
||||
font-weight: bold;
|
||||
color: #3d3d3d;
|
||||
}
|
||||
|
||||
.metadata {
|
||||
border-top: #9c9a9a 1px solid;
|
||||
}
|
||||
|
||||
.metadata li {
|
||||
list-style: none;
|
||||
display: inline-block;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
.metadata span {
|
||||
font-size: 0.9em;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.news-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 1rem;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||
transition: transform 0.2s ease-in-out;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.news-item-header {
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
}
|
||||
.news-item-icon {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
.news-item h3 {
|
||||
font-weight: bold;
|
||||
color: #3d3d3d;
|
||||
}
|
||||
|
||||
.metadata {
|
||||
border-top: #9c9a9a 1px solid;
|
||||
}
|
||||
|
||||
.metadata li {
|
||||
list-style: none;
|
||||
display: inline-block;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
.metadata span {
|
||||
font-size: 0.9em;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
@ -3,8 +3,13 @@
|
|||
<article class="news-item">
|
||||
<div class="news-item-header" v-on:click="openWorkout(item.id)">
|
||||
<h3>{{ item.name }}</h3>
|
||||
<!-- @vue-ignore -->
|
||||
<VaIcon v-if="deleteItem" name="delete_forever" size="22px" color="#bbc1c3" class="news-item-icon" @click="(event: any) => deleteItem?(item.id, event)"/>
|
||||
<VaIcon v-if="deleteItem"
|
||||
name="delete_forever"
|
||||
size="22px"
|
||||
color="#bbc1c3"
|
||||
class="news-item-icon"
|
||||
@click="(event: any) => deleteItem ? deleteItem(item.id, event) : ''"
|
||||
/>
|
||||
</div>
|
||||
<ul class="metadata">
|
||||
<li v-if="item.workouted_at"><span>Дата:</span> {{ formatTime(item.workouted_at) }}</li>
|
||||
|
|
@ -58,9 +63,10 @@
|
|||
@media (min-width: 1300px) {
|
||||
.image-container::before,
|
||||
.image-container::after {
|
||||
top:0;
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 24%;
|
||||
width: 25%;
|
||||
height: 300px;
|
||||
background-image: inherit;
|
||||
background-size: inherit;
|
||||
|
|
|
|||
Loading…
Reference in New Issue