diff options
Diffstat (limited to 'content/html/index.html')
| -rw-r--r-- | content/html/index.html | 42 |
1 files changed, 39 insertions, 3 deletions
diff --git a/content/html/index.html b/content/html/index.html index b97befd7..4b167943 100644 --- a/content/html/index.html +++ b/content/html/index.html @@ -5,9 +5,45 @@ <title>Having fun with computers!</title> <link rel="shortcut icon" type="image/gif" href="/favicon.ico" /> <style type="text/css"> -body { margin: auto; max-width: 900px; } -img { display: block; max-width: 70%;} -p.quote:before { content: " | "; padding-left: 2px; } +body { + margin: auto; + max-width: 900px; + background-color: #FFFFEF; + border: 1px dashed #990000; + border-radius: 8px; + padding: 5px; +} +img { + display:block; + max-width: 90%; +} +p.quote:before { + content: " | "; + padding-left: 2px; +} +a.textlink:before { + content: " ⇒ "; + padding-left: 2px; +} +a.textlink { + text-decoration: none; + color: #FF0000; +} +a.textlink:hover { + text-decoration: underline; +} +pre { + border: 1px dotted #FFA500; + border-radius: 8px; + padding: 5px; +} +h1 { + text-align: center; + color: #880000; +} +h2, h3 { + color: #BB0000; +} </style> </head> <body> |
