-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
72 additions
and
12 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
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,34 @@ | ||
body { | ||
font-family: sans-serif; | ||
} | ||
|
||
#navbar { | ||
padding: 0.3em 0em; | ||
background: steelblue; | ||
color: white; | ||
} | ||
|
||
#navbar ul { | ||
margin: 0; | ||
padding: 0; | ||
list-style-type: none; | ||
} | ||
#navbar ul li { display: inline; } | ||
#navbar ul li a { | ||
text-decoration: none; | ||
padding: .2em 1em; | ||
} | ||
|
||
#navbar a:link { color: white; } | ||
#navbar a:visited { color: white; } | ||
#navbar a:hover { background: black; } | ||
|
||
.platform { | ||
margin: 1em 1em 0em 0em; | ||
padding: 1em; | ||
border: 2px solid steelblue; | ||
} | ||
|
||
.platform h3 { | ||
margin: 0em 0em 1em 0em; | ||
} |