parent
caba2fa0ad
commit
d2cd387411
9 changed files with 36 additions and 136 deletions
@ -1,71 +0,0 @@ |
|||||||
.home-header-item{ |
|
||||||
width: 100%; |
|
||||||
color: white; |
|
||||||
font-family: numeralLight; |
|
||||||
border-radius: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
@media screen and (min-width: 1441px){ |
|
||||||
.home-header-item{ |
|
||||||
max-width: 1250px; |
|
||||||
height: 400px; |
|
||||||
div{ |
|
||||||
width: 29%; |
|
||||||
h1{ |
|
||||||
font-family: numeralMedium; |
|
||||||
font-size: 24px; |
|
||||||
} |
|
||||||
h2{ |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
p{ |
|
||||||
margin-top: 20px; |
|
||||||
font-size: 16px; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
@media screen and (min-width: 1008px) and (max-width: 1440px) { |
|
||||||
.home-header-item{ |
|
||||||
max-width: 1250px; |
|
||||||
height: 400px; |
|
||||||
div{ |
|
||||||
width: 31%; |
|
||||||
h1{ |
|
||||||
font-family: numeralBold; |
|
||||||
font-size: calc(100vw / 60); |
|
||||||
} |
|
||||||
h2{ |
|
||||||
font-size: calc(100vw / 70); |
|
||||||
font-family: numeralMedium; |
|
||||||
} |
|
||||||
p{ |
|
||||||
margin-top: 20px; |
|
||||||
font-size:calc(100vw / 90); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
@media screen and (min-width: 640px) and (max-width: 1007px) { |
|
||||||
.home-header-item{ |
|
||||||
max-width: 900px; |
|
||||||
height: 235px; |
|
||||||
div{ |
|
||||||
width: 31%; |
|
||||||
h1{ |
|
||||||
font-family: numeralBold; |
|
||||||
font-size: calc(100vw / 50); |
|
||||||
} |
|
||||||
h2{ |
|
||||||
font-size: calc(100vw / 60); |
|
||||||
} |
|
||||||
p{ |
|
||||||
margin-top: 20px; |
|
||||||
font-size: calc(100vw / 70); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -1,25 +0,0 @@ |
|||||||
import React from "react"; |
|
||||||
import './index.scss'; |
|
||||||
|
|
||||||
export default function Item(props: any) { |
|
||||||
const { data } = props; |
|
||||||
const style = { |
|
||||||
background: `url(${data.imageUrl})`, |
|
||||||
backgroundSize : '100% 100%', |
|
||||||
backgroundRepeat : 'no-repeat', |
|
||||||
backgroundAttachment : 'fixed', |
|
||||||
backgroundPosition: '0px 0px', |
|
||||||
}; |
|
||||||
return ( |
|
||||||
<div |
|
||||||
className="home-header-item d-flex justify-content-end align-items-center" |
|
||||||
style={style} |
|
||||||
> |
|
||||||
<div> |
|
||||||
<h1>{data.name}</h1> |
|
||||||
<h2>{data.subTitle}</h2> |
|
||||||
<p>{data.text}</p> |
|
||||||
</div> |
|
||||||
</div> |
|
||||||
); |
|
||||||
} |
|
Loading…
Reference in new issue