File size: 1,608 Bytes
5b67956 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
#fullpage.no-scroll {
overflow-y: hidden;
max-height: 100vh;
}
.section {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.section.one {
background-image: url(../media/1.jpg);
}
.section.two {
background-image: url(../media/2.jpg);
}
.section.three {
background-image: url(../media/3.jpg);
}
.section.four {
background-image: url(../media/4.jpg);
}
.section.five {
background-image: url(../media/5.jpg);
}
.section.six {
background-image: url(../media/6.jpg);
}
.section.seven {
background-image: url(../media/7.jpg);
}
.section__content {
position: absolute;
top: 20%;
left: 50%;
transform: translateX(-50%);
width: 100%;
text-align: center;
text-transform: capitalize;
color: var(--primary-color);
}
.section__content__title {
font-size: 4rem;
font-weight: bold;
margin-bottom: 0.5rem;
}
.section__content__subtitle {
font-size: 1.5rem;
font-weight: 500;
}
.section__content__subtitle a {
color: inherit;
}
.section__content__subtitle a:hover {
text-decoration: underline;
}
.section__action__container {
position: absolute;
bottom: 15%;
left: 50%;
transform: translateX(-50%);
width: 100%;
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.section__action__btn {
font-size: 1.5rem;
font-weight: 500;
padding: 1rem;
border-radius: 2rem;
flex-basis: 80%;
margin-bottom: 1rem;
text-transform: capitalize;
}
.action__btn__primary {
background: rgba(23, 26, 42, 0.8);
color: white;
}
.action__btn__secondary {
background: rgba(255, 255, 255, 0.65);
color: var(--primary-color);
} |