diff options
author | emkael <emkael@tlen.pl> | 2014-07-22 09:44:32 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2014-07-22 09:44:32 +0200 |
commit | d0474cc7dec9919ac79e0e4e3af14c75183cd638 (patch) | |
tree | a75580f21c5ef5be043dece9abf9e603b00be790 | |
parent | e0d91df85758ad8c6a7511c04a056067e80f3e17 (diff) |
info box
-rw-r--r-- | index.html | 5 | ||||
-rw-r--r-- | style.css | 10 |
2 files changed, 14 insertions, 1 deletions
@@ -9,6 +9,11 @@ <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> + <div class="info"> + <h1>Howellki</h1> + Obsługa: wybierz rotację z menu po prawej stronie.<br /> + Autor: <a href="http://emkael.info">MKL</a> + </div> <div class="selector"> <div class="lollipop"> <br /><br /> @@ -79,7 +79,7 @@ table.summary th { color: white; font-weight: normal; text-shadow: - -1px -1px 0 black, + -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black; @@ -126,3 +126,11 @@ table.summary td { text-align: center; border: solid 1px black; } + +.info { + position: fixed; + bottom: 0; + right: 0; + width: 250px; + height: 150px; +} |