-
Notifications
You must be signed in to change notification settings - Fork 25
Kenworthy #5
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
Open
mrk3767
wants to merge
2
commits into
master
Choose a base branch
from
Kenworthy
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Kenworthy #5
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file added
BIN
+16.1 KB
top-nav-drill/.sass-cache/764231452b5fcd6958c0091c0b6eb89e799d86fc/main.css.scssc
Binary file not shown.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| !!! 5 | ||
|
|
||
| %html{:lang => "en"} | ||
| %head | ||
| %meta{:charset => "UTF-8"} | ||
| %title The Awesome Company | ||
| %link{:rel => "stylesheet", :href => "bower_components/normalize-css/normalize.css"} | ||
| %link{:rel => "stylesheet", :href => "main.css"} | ||
| %body | ||
| .container | ||
| %header | ||
| %span | ||
| %a{:href => "#"} Awesome Company | ||
| %nav | ||
| %ul | ||
| %li | ||
| %a{:href => "#"} Home | ||
| %ul | ||
| %li | ||
| %a{:href => "#"} Test | ||
| %li | ||
| %a{:href => "#"} What a joke | ||
| %li | ||
| %a{:href => "#"} About | ||
| %li | ||
| %a{:href => "#"} Services | ||
| %li | ||
| %a{:href => "#"} Contact | ||
| %section | ||
| %h1 A Page Title | ||
| %section | ||
| %h2 A Paragraph | ||
| %p Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum blandit, tellus ornare mollis rhoncus, risus dui tincidunt nisl, nec vulputate sapien neque at tellus. Aenean in ornare nisl, sed porta dui. | ||
| %p Nunc sit amet arcu id ligula commodo consequat vel a lorem. Proin auctor, purus in dictum efficitur, mauris purus dictum augue, vitae laoreet ante nunc in sapien. Maecenas yconsectetur egestas euismod. | ||
| %section | ||
| %h2 A Paragraph | ||
| %p Donec faucibus sodales lectus, quis dictum ligula aliquet sit amet. Nam sodales nibh quis quam dictum sollicitudin. Nullam ut est euismod, hendrerit tellus et, euismod turpis. | ||
| %p Nunc sit amet arcu id ligula commodo consequat vel a lorem. Proin auctor, purus in dictum efficitur, mauris purus dictum augue, vitae laoreet ante nunc in sapien. Maecenas consectetur egestas euismod. | ||
| %section | ||
| %h2 A Paragraph | ||
| %p Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Maecenas non mauris ac erat consequat rhoncus. Mauris nec sapien luctus, rutrum leo sit amet, pretium elit. | ||
| %footer | ||
| %p Copyright © 2013 Awesome Company LLC. | ||
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| .container{ | ||
| margin: 0 auto; | ||
| } | ||
|
|
||
| header{ | ||
| background-color: black; | ||
| display: block; | ||
| color: #FFFFFF; | ||
| padding: 4px; | ||
| a{ | ||
| @extend header; | ||
| } | ||
| span a{ | ||
| text-decoration: none; | ||
| font-size: 34px; | ||
| font-style: bold; | ||
| padding-left: 25px; | ||
| padding-right: 25px; | ||
| font-weight: 500; | ||
| } | ||
| } | ||
|
|
||
| nav{ | ||
| position: fixed; | ||
| right: 0px; | ||
| top: 0px; | ||
| padding: 0px 25px; | ||
| a{ | ||
| font-size: 20px; | ||
| font-weight: 100; | ||
| } | ||
| ul{ | ||
| list-style-type:none; | ||
| li{ | ||
| float:left; | ||
| padding: 0px 1px; | ||
| margin: 0px 2px; | ||
| :hover > ul{ | ||
| display: block; | ||
| position: absolute; | ||
| } | ||
| } | ||
| ul{ | ||
| display:none; | ||
|
|
||
| background: #FFFFFF; | ||
| border-radius: 0px; | ||
| padding: 0; | ||
| position: absolute; | ||
| top: 100%; | ||
| li{ | ||
| float: none; | ||
| border-top: 1px solid #6b727c; | ||
| border-bottom: 1px solid #575f6a; | ||
| position: relative; | ||
| a{ | ||
| padding: 0px 10px; | ||
| color: #fff; | ||
| :hover{ | ||
| background: #4b545f; | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| section{ | ||
| margin: 0 auto; | ||
| width: 50%; | ||
| section{ | ||
| width: auto; | ||
| } | ||
| } | ||
| footer{ | ||
| border-top: solid darkgray; | ||
| border-width: 3px; | ||
| } | ||
| h1{ | ||
| border-bottom: solid lightgray; | ||
| border-width: 2px; | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Don't forget that you can use Ruby 1.9 style symbol keys in Haml like this:
%html{lang: "en"}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.
bump 👍