-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
About page #60
base: master
Are you sure you want to change the base?
About page #60
Changes from all commits
7768694
bd4d857
d31002d
7b9b12c
a47a351
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.full-screen { | ||
min-height: 100vh; | ||
min-width: 100vw; | ||
height: auto; | ||
width: auto; | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
padding: 0; | ||
background-position: top center; | ||
background-repeat: no-repeat; | ||
@include background-size(cover); | ||
z-index: -100; | ||
overflow: auto; | ||
} | ||
|
||
#about-page { | ||
background-image: url('http://lorempixel.com/output/cats-q-c-1600-1000-9.jpg'); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
html, body { | ||
height: 100%; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@mixin background-size($size) { | ||
-webkit-background-size: $size; | ||
-moz-background-size: $size; | ||
-o-background-size: $size; | ||
background-size: $size; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
--- | ||
# These lines are for Jekyll | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are these lines needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The 6 dashes are a Jekyll thing, so Jekyll knows it's has to do something with the file. |
||
--- | ||
|
||
@import "background"; | ||
@import | ||
"mixins", | ||
"images" | ||
; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this
mixin
being used?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now being used in latest commit.