-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sorted footer and drop down menus Signed-off-by: Dave <[email protected]>
- Loading branch information
1 parent
9db8042
commit 72a7a55
Showing
8 changed files
with
106 additions
and
31 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.sub { | ||
position: absolute; | ||
top: 5px; | ||
right: 5px; | ||
} | ||
.sub a { | ||
color: #CCC; | ||
} | ||
.sub span { | ||
text-indent: -999em; | ||
display: block; | ||
} | ||
.sub ul { | ||
position: absolute; | ||
left: -9999em; | ||
background: #333; | ||
padding: 5px; | ||
z-index: 1; | ||
width: 130px; | ||
} | ||
.sub:hover ul { | ||
left: -105px; | ||
} |
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
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
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,11 +1,43 @@ | ||
footer { | ||
text-align: center; | ||
margin-top: 50px; | ||
position: relative; | ||
} | ||
footer legend { | ||
position: absolute; | ||
left: -999em; | ||
} | ||
footer p { | ||
font-size: 14px; | ||
font-size: 11px; | ||
font-size: 1.1rem; | ||
color: #AAA; | ||
margin: 4px auto; | ||
} | ||
footer a { | ||
color: #222; | ||
color: #FFF; | ||
text-decoration: none; | ||
} | ||
.footer-wrapper { | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
background: #333; | ||
} | ||
|
||
.add-item { | ||
position: absolute; | ||
left: -999em; | ||
} | ||
.project-options > li { | ||
display: inline-block; | ||
width: 50%; | ||
padding: 5px; | ||
border-left: 1px solid #555; | ||
} | ||
.project-options > li a{ | ||
display: block; | ||
} | ||
.project-options > li:first-child { | ||
border-left:none; | ||
border-right: 1px solid #222; | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.content-wrapper { | ||
margin-top: 50px; | ||
} |
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