Create Fork App section

This commit is contained in:
Bartlomiej Pluta (PGS Software)
2018-03-19 13:02:48 +01:00
parent bafc12d3dd
commit 93d3db0fdd
5 changed files with 71 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
#download {
text-align: center;
a.raised-button {
position: absolute;
transform: translate(-50%, -50%);
font-size: 21px;
font-weight: bold;
text-transform: capitalize;
padding: 15px 60px;
}
p {
padding-top: 45px;
font-family: Montserrat, sans-serif;
font-size: 14px;
color: $regular-text;
text-transform: capitalize;
}
}

32
src/scss/_hero.scss Normal file
View File

@@ -0,0 +1,32 @@
#hero {
background: url(../img/hero/img.png) no-repeat 50% 40% / contain;
height: 900px;
padding-top: 110px;
h1 {
font-family: Montserrat, sans-serif;
font-size: 82px;
font-weight: bold;
color: white;
text-transform: capitalize;
text-align: center;
}
h2 {
font-family: Lato, sans-serif;
font-size: 30px;
color: $primary;
text-align: center;
margin-bottom: 0;
}
h3 {
margin-top: 20px;
font-family: Montserrat, sans-serif;
font-size: 16px;
font-weight: 600;
color: $regular-text;
text-transform: uppercase;
text-align: center;
}
}

View File

@@ -1,2 +1,3 @@
$primary: #8d81ac;
$primary-dark: #635c73;
$primary-dark: #635c73;
$regular-text: #848e97;

View File

@@ -1,3 +1,5 @@
@import "variables";
@import "buttons";
@import "navbar";
@import "buttons";
@import "hero";
@import "download";