This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 865
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #463 from olefredrik/feature/frontTemplate
Tweaked the visual apperance of the front template
- Loading branch information
Showing
4 changed files
with
95 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,92 @@ | ||
#front-hero { | ||
background: url("../images/demo/marquee-stars.svg") repeat scroll 0 0 #074E68; | ||
padding: rem-calc(20) 0; | ||
margin: - rem-calc(32) 0 rem-calc(32); | ||
position: relative; | ||
text-align: left; | ||
height: auto; | ||
|
||
.marketing { | ||
@include grid-row(); | ||
} | ||
|
||
@media #{$small-up} { | ||
background: url("../images/demo/marquee-stars.svg") repeat scroll 0 0 #074E68; | ||
padding: rem-calc(65%) 0; | ||
margin: - rem-calc(32) 0 rem-calc(32); | ||
position: relative; | ||
text-align: left; | ||
} | ||
|
||
@media #{$medium-up} { | ||
height: rem-calc(400); | ||
margin: - rem-calc(32) 0 rem-calc(72); | ||
} | ||
|
||
#watch { | ||
section { | ||
display: inline; | ||
} | ||
|
||
a { | ||
color: #B4C9D1; | ||
cursor: pointer; | ||
font-weight: 400; | ||
margin-right: rem-calc(20); | ||
} | ||
|
||
a:hover { | ||
color: #fff; | ||
} | ||
|
||
#stargazers { | ||
:before { | ||
content: "\f09b"; | ||
font-family: FontAwesome; | ||
font-style: normal; | ||
font-weight: normal; | ||
text-decoration: inherit; | ||
color: #B4C9D1; | ||
margin-right: rem-calc(8); | ||
} | ||
} | ||
|
||
#twitter { | ||
:before { | ||
content: "\f099"; | ||
font-family: FontAwesome; | ||
font-style: normal; | ||
font-weight: normal; | ||
text-decoration: inherit; | ||
color: #B4C9D1; | ||
margin-right: rem-calc(8); | ||
} | ||
} | ||
|
||
} | ||
|
||
.tagline { | ||
|
||
@media screen and (min-width: 320px) and (max-width: 640px) { | ||
@include grid-column(12); | ||
} | ||
|
||
@media screen and (min-width:641px) and (max-width: 870px) { | ||
@include grid-column(9); | ||
} | ||
|
||
@media screen and (min-width: 871px) { | ||
@include grid-column(5); | ||
} | ||
} | ||
|
||
h1 { font-weight: 500; } | ||
|
||
h1 a, h4 { color: #fff; } | ||
|
||
.floatingyeti img { | ||
max-width: 30%; | ||
.fpmock img { | ||
@media screen and (max-width: 870px) { | ||
display: none; | ||
} | ||
|
||
position: absolute; | ||
right: rem-calc(100); | ||
top:rem-calc(21); | ||
} | ||
|
||
.download { margin-top: rem-calc(20); } | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters