This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/webapp/src/components/HomeTop/HomeTop.scss

69 lines
1.0 KiB
SCSS
Raw Normal View History

2020-02-12 22:13:34 +00:00
@import "../../variables.scss";
2020-02-12 17:23:10 +00:00
.home-top {
text-align: center;
padding: 60px 0 50px;
position: relative;
@media (min-width: $largebp) {
padding: 60px 0 70px;
}
.logo {
display: inline-block;
width: 85px;
margin-bottom: 5px;
margin-right: 10px; // move it 10px so it looks like it's centered
}
.wordmark {
2020-02-12 17:23:10 +00:00
margin: 0 auto 35px;
}
2020-02-12 17:23:10 +00:00
h1 {
font-size: 44px;
line-height: 1.14;
margin-bottom: 38px;
@media (min-width: $largebp) {
font-size: 56px;
}
}
p {
2020-02-18 06:01:42 +00:00
font-size: 21px;
2020-02-12 17:23:10 +00:00
line-height: 1.33;
max-width: 560px;
margin: 0 auto;
@media (min-width: $largebp) {
font-size: 24px;
max-width: 670px;
}
}
}
.deco-1 {
position: absolute;
left: 100%;
2020-02-12 22:13:34 +00:00
bottom: 25%;
margin-left: 20px;
2020-02-12 17:23:10 +00:00
animation: 6s float infinite;
@media (min-width: 591px) {
margin-left: 100px;
}
}
.deco-2 {
position: absolute;
left: 100%;
2020-02-12 22:13:34 +00:00
bottom: 5%;
margin-left: -15px;
2020-02-12 17:23:10 +00:00
animation: 8s float infinite;
@media (min-width: 591px) {
margin-left: 50px;
}
}