-
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.
move all styling into an external css file
- Loading branch information
1 parent
e762927
commit 8b28923
Showing
2 changed files
with
42 additions
and
8 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,34 @@ | ||
html { | ||
background-color: #fff; | ||
} | ||
|
||
body { | ||
font-family: sans; | ||
font-size: 1.2em; | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
margin: 1.7em auto; | ||
font-weight: normal; | ||
font-size: 2em; | ||
color: #333; | ||
} | ||
|
||
p.error { | ||
background-color: #f66; | ||
font-weight: bold; | ||
padding: 0.5em; | ||
} | ||
|
||
p.debug { | ||
color: #777; | ||
} | ||
|
||
input.urlentry { | ||
width: 50em; | ||
} | ||
|
||
span.grey { | ||
color: #777; | ||
} |