forked from npjg/classic.css
-
Notifications
You must be signed in to change notification settings - Fork 15
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 #6 from robbiebyrd/dev
Add alert windows, extra fonts
- Loading branch information
Showing
9 changed files
with
543 additions
and
386 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,92 @@ | ||
nav { | ||
background: #000; | ||
margin: 0 0 1em; | ||
padding: 0; | ||
position: relative; | ||
width: 100%; | ||
z-index: 9900; | ||
} | ||
|
||
ul.menu { | ||
display: none; | ||
float: left; | ||
margin-left: -0.5rem; | ||
padding: 0; | ||
position: absolute; | ||
background-color: #ddd; | ||
color: #000; | ||
font-size: 1.25rem; | ||
list-style-type: none; | ||
} | ||
|
||
#macoslogo img { | ||
height: 1.25rem; | ||
width: 1.25rem; | ||
} | ||
|
||
#nav-list #time, | ||
#nav-list #macoslogo { | ||
float: right; | ||
} | ||
|
||
#nav-list li { | ||
float: left; | ||
height: 1.75rem; | ||
line-height: 1.5rem; | ||
padding: 0.25rem 0.5rem 0; | ||
} | ||
|
||
#nav-list li:hover ul.menu li img { | ||
margin-left: -1.25em; | ||
margin-right: 0.25em; | ||
} | ||
|
||
#nav-list li:hover ul.menu li { | ||
clear: both; | ||
padding: 0.25em 1em 1.5em 2em; | ||
width: 100%; | ||
} | ||
|
||
#nav-list { | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
position: relative; | ||
} | ||
|
||
#nav-wrapper { | ||
background-color: #ddd; | ||
border-radius: 1em 1em 0 0; | ||
box-shadow: inset 1px 1px 0 0 #888, inset -1px -1px 0 0 #fff; | ||
display: inline-block; | ||
height: 100%; | ||
padding: 0 1rem; | ||
width: 100%; | ||
} | ||
|
||
#nav-list #time:hover { | ||
background-color: inherit; | ||
color: inherit; | ||
} | ||
|
||
#nav-wrapper ul li:hover { | ||
background-color: #339; | ||
color: #fff; | ||
} | ||
|
||
#nav-list ul > li.disabled { | ||
padding-left: 1em !important; | ||
} | ||
|
||
#nav-wrapper ul li.disabled { | ||
color: #777; | ||
} | ||
|
||
#nav-wrapper ul li.disabled:hover { | ||
background-color: #777; | ||
color: #fff; | ||
} | ||
|
||
#nav-wrapper ul { | ||
font-size: 1.25rem; | ||
} |
Oops, something went wrong.