carousel forgotten frame added
This commit is contained in:
parent
91dcb3877f
commit
3a1a86cbb9
18
public/css/custom.css
vendored
18
public/css/custom.css
vendored
@ -59,11 +59,6 @@
|
|||||||
|
|
||||||
|
|
||||||
/*--------Carousel Arrows--------*/
|
/*--------Carousel Arrows--------*/
|
||||||
button:focus
|
|
||||||
{
|
|
||||||
outline: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.carousel-description
|
.carousel-description
|
||||||
{
|
{
|
||||||
background-color: #3c3f72 !important;
|
background-color: #3c3f72 !important;
|
||||||
@ -78,9 +73,22 @@ button:focus
|
|||||||
background-color: unset !important;
|
background-color: unset !important;
|
||||||
font-size: 24px !important;
|
font-size: 24px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.carousel-frame
|
||||||
|
{
|
||||||
|
border: 1px solid #3c3f72;
|
||||||
|
}
|
||||||
/*--------Carousel Arrows Finish--------*/
|
/*--------Carousel Arrows Finish--------*/
|
||||||
|
|
||||||
|
|
||||||
|
/*--------General Button Focus--------*/
|
||||||
|
button:focus
|
||||||
|
{
|
||||||
|
outline: none !important;
|
||||||
|
}
|
||||||
|
/*--------General Button Focus Finish--------*/
|
||||||
|
|
||||||
|
|
||||||
/*--------General Button Hover--------*/
|
/*--------General Button Hover--------*/
|
||||||
.btn:hover
|
.btn:hover
|
||||||
{
|
{
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
:interval="interval" :arrow="arrow">
|
:interval="interval" :arrow="arrow">
|
||||||
|
|
||||||
<el-carousel-item v-if="video">
|
<el-carousel-item v-if="video">
|
||||||
<iframe width="100%" height="365px"
|
<iframe class="carousel-frame" width="100%" height="365px"
|
||||||
:src="'https://www.youtube-nocookie.com/embed/' + video"
|
:src="'https://www.youtube-nocookie.com/embed/' + video"
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
</el-carousel-item>
|
</el-carousel-item>
|
||||||
|
|
||||||
<el-carousel-item v-for="(screenshot, index) in screenshots" :key="index">
|
<el-carousel-item v-for="(screenshot, index) in screenshots" :key="index">
|
||||||
<img class="d-block w-100" :src="screenshot.path_string" :alt="screenshot.alt_attribute">
|
<img class="d-block w-100 carousel-frame" :src="screenshot.path_string" :alt="screenshot.alt_attribute">
|
||||||
<div class="carousel-description py-2">
|
<div class="carousel-description py-2">
|
||||||
{{ screenshot.description }}
|
{{ screenshot.description }}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user