fix(adhesion): play icon cover
This commit is contained in:
parent
57d077438b
commit
987555c944
5 changed files with 206 additions and 151 deletions
1
assets/images/icons/circle-play.svg
Normal file
1
assets/images/icons/circle-play.svg
Normal file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9V168c0-8.7 4.7-16.7 12.3-20.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 522 B |
|
|
@ -1,153 +1,179 @@
|
|||
|
||||
.adhesion-body {
|
||||
overflow: hidden !important;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.root {
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.adhesion-container {
|
||||
background-color: black;
|
||||
width: 100%;
|
||||
flex-grow: 1;
|
||||
// height: 100%;
|
||||
// min-height: 100%;
|
||||
// height: 90vh;
|
||||
|
||||
.video-presentation {
|
||||
.root {
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
iframe {
|
||||
width: 100%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.adhesion-container {
|
||||
background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, darken($background, 15%) 100%);
|
||||
|
||||
width: 100%;
|
||||
flex-grow: 1;
|
||||
|
||||
.video-presentation {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.adhesion {
|
||||
|
||||
}
|
||||
|
||||
.adhesion-footer {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
padding: 1rem 0;
|
||||
|
||||
background-color: $background;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.adhesion-btns {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background-color: white;
|
||||
opacity: 0.8;
|
||||
transition: 0.2s all;
|
||||
|
||||
.btn__icon {
|
||||
margin-right: 1rem;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.subscribe-button {
|
||||
text-transform: uppercase;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 35px;
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
padding: .7rem 2rem;
|
||||
}
|
||||
|
||||
.socials {
|
||||
|
||||
display: flex;
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
background-color: white;
|
||||
border-radius: 50%;
|
||||
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
margin-right: 1rem;
|
||||
|
||||
&:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-transform: uppercase;
|
||||
|
||||
svg {
|
||||
display: block;
|
||||
padding: .7rem;
|
||||
fill: black;
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// @media (min-height: 800px) and (max-height: 900px) {
|
||||
// .body {
|
||||
// display: none;
|
||||
// }
|
||||
// .adhesion-container {
|
||||
// height: 76vh !important;
|
||||
// }
|
||||
// .adhesion-footer {
|
||||
// height: 100% !important;
|
||||
// }
|
||||
// }
|
||||
.video-presentation-cover {
|
||||
position: relative;
|
||||
|
||||
@media (max-width: $mobile-breakpoint) {
|
||||
.adhesion-footer {
|
||||
height: auto;
|
||||
}
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
|
||||
.adhesion-footer {
|
||||
.subscribe-button {
|
||||
margin-bottom: 1rem;
|
||||
button {
|
||||
width: 6rem;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
|
||||
.btn-icon {
|
||||
fill: white;
|
||||
}
|
||||
}
|
||||
.adhesion-btns {
|
||||
flex-direction: column;
|
||||
}
|
||||
.socials {
|
||||
|
||||
.video-cover__back {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
background-color: $background;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
|
||||
.back-icon {
|
||||
width: 50%;
|
||||
fill: white;
|
||||
opacity: 0.6;
|
||||
position: relative;
|
||||
top: 0rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.video-cover__content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
padding: 3rem;
|
||||
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.adhesion-footer {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
padding: 1rem 0;
|
||||
|
||||
background-color: $background;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.adhesion-btns {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background-color: white;
|
||||
opacity: 0.8;
|
||||
transition: 0.2s all;
|
||||
|
||||
.btn__icon {
|
||||
margin-right: 1rem;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.subscribe-button {
|
||||
text-transform: uppercase;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 35px;
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
padding: .7rem 2rem;
|
||||
}
|
||||
|
||||
.socials {
|
||||
display: flex;
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
li {
|
||||
background-color: white;
|
||||
border-radius: 50%;
|
||||
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
margin-right: 1rem;
|
||||
|
||||
&:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-transform: uppercase;
|
||||
|
||||
svg {
|
||||
display: block;
|
||||
padding: .7rem;
|
||||
fill: black;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: $mobile-breakpoint) {
|
||||
.adhesion-footer {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.adhesion-footer {
|
||||
.subscribe-button {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.adhesion-btns {
|
||||
flex-direction: column;
|
||||
}
|
||||
.socials {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// @media (max-width: $xs-breakpoint) {
|
||||
// .adhesion-container {
|
||||
// height: 80vh;
|
||||
// }
|
||||
// }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue