-
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.
Adding a stylesheet for the tag and help overlays
- Loading branch information
1 parent
e7bc60b
commit 48cbcc1
Showing
1 changed file
with
25 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* These styles are for the tag and help overlays. */ | ||
|
||
.shortcut-display { | ||
padding: 10px; | ||
background: #eee; | ||
position: fixed; | ||
bottom: 0; | ||
right: 0; | ||
border-top: 1px solid #999; | ||
border-left: 1px solid #999; | ||
-moz-box-shadow: #666 2px 2px 10px; | ||
-webkit-box-shadow: #666 2px 2px 10px; | ||
z-index: 9999; | ||
} | ||
|
||
#shortcut-help li { | ||
color: #555; | ||
margin-bottom: .25em; | ||
} | ||
|
||
#shortcut-help h3 { | ||
margin-bottom: .5em; | ||
font-size: 1.5em; | ||
font-weight: normal; | ||
} |