parent
ef2e71fe22
commit
a152a7e228
12 changed files with 329 additions and 60 deletions
@ -1,18 +1,175 @@ |
||||
.home-header{ |
||||
.home-header { |
||||
position: relative; |
||||
width: 100%; |
||||
margin: 0px auto; |
||||
margin-top: 30px; |
||||
span { |
||||
height: 80%; |
||||
width: 8px; |
||||
background-color: white; |
||||
border-radius: 10px; |
||||
} |
||||
.item { |
||||
height: 420px; |
||||
background-size: 100% 100% !important; |
||||
background-repeat: no-repeat !important; |
||||
background-position: 0px 0px !important; |
||||
font-family: numeralLight; |
||||
color: white; |
||||
padding-right: 60%; |
||||
padding-top: 10%; |
||||
border-radius: 10px; |
||||
margin: 0px 10px; |
||||
h1 { |
||||
font-family: numeralBold; |
||||
} |
||||
} |
||||
strong { |
||||
font-weight: 300; |
||||
} |
||||
&__cover { |
||||
position: absolute; |
||||
left: 0px; |
||||
top: 0px; |
||||
width: 100%; |
||||
height: 100%; |
||||
background: linear-gradient( |
||||
0deg, |
||||
hsla(0, 0%, 0%, 1) 0%, |
||||
hsla(250, 14%, 61%, 0) 64% |
||||
); |
||||
border-radius: 10px; |
||||
} |
||||
} |
||||
|
||||
@media screen and (min-width: 1441px){ |
||||
.home-header{ |
||||
@media screen and (min-width: 1441px) { |
||||
.home-header { |
||||
max-width: 1250px; |
||||
.item { |
||||
h1 { |
||||
font-size: 30px; |
||||
} |
||||
h2{ |
||||
font-size: 20px; |
||||
} |
||||
} |
||||
.carousel-indicators li { |
||||
margin-left: 20px !important; |
||||
max-width: 200px !important; |
||||
div { |
||||
margin-right: 10px; |
||||
} |
||||
strong { |
||||
font-size: 14px; |
||||
} |
||||
b { |
||||
font-size: 20px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
@media screen and (min-width: 1008px) and (max-width: 1440px) { |
||||
.home-header{ |
||||
@media screen and (min-width: 1008px) and (max-width: 1440px) { |
||||
.home-header { |
||||
max-width: 1250px; |
||||
.item { |
||||
h1 { |
||||
font-size: calc(100vw / 50); |
||||
} |
||||
h2 { |
||||
font-size: calc(100vw / 60); |
||||
} |
||||
} |
||||
.carousel-indicators li { |
||||
margin-left: 20px !important; |
||||
max-width: 200px !important; |
||||
div { |
||||
margin-right: 10px; |
||||
} |
||||
strong { |
||||
font-size: calc(100vw / 90); |
||||
} |
||||
b { |
||||
font-size: calc(100vw / 60); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
@media screen and (min-width: 641px) and (max-width: 1007px) { |
||||
.home-header { |
||||
max-width: 900px; |
||||
.item { |
||||
padding-top: 15%; |
||||
h1 { |
||||
font-size: calc(100vw / 50); |
||||
} |
||||
h2 { |
||||
font-size: calc(100vw / 60); |
||||
margin-top: 10px; |
||||
} |
||||
} |
||||
.carousel-indicators li { |
||||
margin-left: 20px !important; |
||||
max-width: 200px !important; |
||||
div { |
||||
margin-right: 10px; |
||||
} |
||||
strong { |
||||
font-size: calc(100vw / 70); |
||||
} |
||||
b { |
||||
font-size: calc(100vw / 50); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.carousel-indicators { |
||||
position: absolute !important; |
||||
left: 0px !important; |
||||
right: auto !important; |
||||
bottom: 10px !important; |
||||
z-index: auto !important; |
||||
display: auto !important; |
||||
justify-content: auto !important; |
||||
padding: auto !important; |
||||
margin: 0px !important; |
||||
list-style: auto !important; |
||||
color: white; |
||||
width: 40% !important; |
||||
justify-content: flex-start !important; |
||||
|
||||
span.active { |
||||
height: 80% !important; |
||||
width: 8px !important; |
||||
background-color: yellow !important; |
||||
} |
||||
} |
||||
|
||||
.active span { |
||||
background-color: yellow !important; |
||||
height: 80% !important; |
||||
width: 8px !important; |
||||
} |
||||
|
||||
.carousel-indicators li { |
||||
display: auto !important; |
||||
width: auto !important; |
||||
height: auto !important; |
||||
margin: 0px !important; |
||||
text-indent: 0px !important; |
||||
cursor: pointer !important; |
||||
background-color: inherit !important; |
||||
border: 0px !important; |
||||
border-radius: 0px !important; |
||||
text-align: right !important; |
||||
justify-content: flex-start !important; |
||||
font-family: numeralLight !important; |
||||
span { |
||||
height: 80%; |
||||
width: 8px; |
||||
background-color: white; |
||||
border-radius: 10px; |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue