summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2014-07-22 09:44:32 +0200
committeremkael <emkael@tlen.pl>2014-07-22 09:44:32 +0200
commitd0474cc7dec9919ac79e0e4e3af14c75183cd638 (patch)
treea75580f21c5ef5be043dece9abf9e603b00be790
parente0d91df85758ad8c6a7511c04a056067e80f3e17 (diff)
info box
-rw-r--r--index.html5
-rw-r--r--style.css10
2 files changed, 14 insertions, 1 deletions
diff --git a/index.html b/index.html
index 37f95ee..7b8877e 100644
--- a/index.html
+++ b/index.html
@@ -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 />
diff --git a/style.css b/style.css
index 8903cf2..ae4323e 100644
--- a/style.css
+++ b/style.css
@@ -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;
+}