diff options
author | Stefan Ritter <xeno@thehappy.de> | 2010-02-13 19:55:44 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2010-02-13 19:55:44 +0100 |
commit | 6e3bf1759ebed0abffc534e2b5ef1c462cdce85f (patch) | |
tree | 31126c9004d07dc5f611999cdbf5d728659a2982 /styles/commodore/commodore.css | |
parent | d0cd09a5a0a8bf9b0b8cd1cc304c0f66cf506ed6 (diff) |
Added experimental commodore style
* Disable comments
* Style is using @font-face
Diffstat (limited to 'styles/commodore/commodore.css')
-rw-r--r-- | styles/commodore/commodore.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/styles/commodore/commodore.css b/styles/commodore/commodore.css new file mode 100644 index 0000000..d246dc0 --- /dev/null +++ b/styles/commodore/commodore.css @@ -0,0 +1,56 @@ +* { + margin: 0; + padding: 0; +} + +body { + margin: auto; + width: 580px; + background: #a396ff; + color: #a396ff; + font-family: "Razor Regular"; + font-size: 10px; +} + +@font-face { + font-family: "Razor Regular"; + src: url("commodore.ttf"); +} + +a { + color: #d6c9ff; + text-decoration: none; +} + + a:hover { + color: #c22; + } + +img { + border: none; +} + +.rss, .atom, .pages, .months, .linklist { + visibility: hidden; +} + +.header { + text-align: center; + color: #4e44d8; +} + +.entries { + background: #4e44d8; + position: absolute; + top: 26px; + width: 580px; +} + + .entry { + border-bottom: 5px solid #111; + } + + .entry_content { + margin-left: 10px; + margin-right: 10px; + } |