Move textarea below key and make key wider

This commit is contained in:
Charles Nodell 2016-03-31 15:20:11 +02:00
parent 0209375865
commit 71ea9fd864
1 changed files with 12 additions and 6 deletions

View File

@ -7,6 +7,8 @@ body {
/* textarea */ /* textarea */
textarea { textarea {
position: absolute;
top: 120px;
background: transparent; background: transparent;
border: 0px; border: 0px;
color: #fff; color: #fff;
@ -25,7 +27,7 @@ textarea {
color: #7d7d7d; color: #7d7d7d;
z-index: -1000; z-index: -1000;
position: absolute; position: absolute;
top: 20px; top: 120px;
left: 0px; left: 0px;
width: 30px; /* 30 to get 20 away from box */ width: 30px; /* 30 to get 20 away from box */
font-size: 13px; font-size: 13px;
@ -36,6 +38,8 @@ textarea {
/* code box when locked */ /* code box when locked */
#box { #box {
position: absolute;
top: 120px;
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
width: 100%; width: 100%;
@ -53,9 +57,7 @@ textarea {
/* key */ /* key */
#key { #key {
position: fixed; margin: auto;
top: 0px;
right: 0px;
z-index: +1000; /* watch out */ z-index: +1000; /* watch out */
} }
@ -69,6 +71,7 @@ textarea {
background: #08323c; background: #08323c;
font-size: 0px; font-size: 0px;
padding: 0px 5px; padding: 0px 5px;
text-align: right;
} }
#box1 a.logo, #box1 a.logo:visited { #box1 a.logo, #box1 a.logo:visited {
@ -111,7 +114,10 @@ textarea {
right: 0px; right: 0px;
} }
#box3, #messages li { #box3 {
position: fixed;
right: 50px;
width: 140px;
background: #173e48; background: #173e48;
font-family: Helvetica, sans-serif; font-family: Helvetica, sans-serif;
font-size: 12px; font-size: 12px;