Browse Source

Move logo to it's own file, and tweaks

master
Brett Langdon 8 years ago
parent
commit
7665d2eb8e
No known key found for this signature in database GPG Key ID: B664881177781B04
4 changed files with 327 additions and 23 deletions
  1. +22
    -16
      index.html
  2. +286
    -0
      logo.svg
  3. +1
    -1
      styles.css
  4. +18
    -6
      styles.scss

+ 22
- 16
index.html
File diff suppressed because it is too large
View File


+ 286
- 0
logo.svg
File diff suppressed because it is too large
View File


+ 1
- 1
styles.css
File diff suppressed because it is too large
View File


+ 18
- 6
styles.scss View File

@ -136,20 +136,31 @@ $text: $grey-darker;
.headline {
@include from($desktop) {
font-size: $size-1;
font-size: 7rem;
line-height: 7rem;
}
@include until($desktop) {
font-size: $size-3;
font-size: 5rem;
line-height: 5rem;
}
@include until($tablet) {
font-size: 3rem;
line-height: 3rem;
}
&+.subtitle {
@include from($desktop){
font-size: $size-5;
@include from($desktop) {
font-size: 2rem;
}
@include until($desktop){
font-size: 1.5rem;
}
@include until($desktop) {
font-size: $size-6;
@include until($tablet) {
font-size: 1rem;
}
}
}
@ -161,6 +172,7 @@ $text: $grey-darker;
height: 10rem;
top: 1rem;
right: 1rem;
z-index: 110;
@include until($desktop) {
width: 7rem;


Loading…
Cancel
Save