Massive amount of changes. Now requires PHP for image uploading; front-end changes bring in uploader and some other fixes.
This commit is contained in:
parent
f82d359803
commit
124af1d05c
5 changed files with 214 additions and 94 deletions
|
|
@ -20,7 +20,6 @@ html {
|
|||
}
|
||||
|
||||
body {
|
||||
position: relative;
|
||||
text-align: left;
|
||||
width: 600px;
|
||||
margin: 10px auto;
|
||||
|
|
@ -32,7 +31,30 @@ h1 {
|
|||
color: #fff;
|
||||
}
|
||||
|
||||
#footer, #container_top, #container_bottom {
|
||||
#container_top { position: relative; }
|
||||
|
||||
#upload_button {
|
||||
display: block;
|
||||
width: 120px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 17px; /* Laziness */
|
||||
padding: 5px;
|
||||
background-color: #4FA36D;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 1em;
|
||||
line-height: 1.2em;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
}
|
||||
|
||||
#upload_button:hover {
|
||||
text-decoration: none;
|
||||
background-color: #43895c;
|
||||
}
|
||||
|
||||
#options, #footer, #container_top, #container_bottom {
|
||||
background-color: #404d59;
|
||||
margin: 10px auto 5px;
|
||||
text-align: left;
|
||||
|
|
@ -41,11 +63,15 @@ h1 {
|
|||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
float: left;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#container_bottom { display: none; }
|
||||
#footer { text-align: center; margin-bottom: 30px; font-size: 1.2em; line-height: 1.4em; }
|
||||
|
||||
#footer { text-align: center; font-size: 1.2em; line-height: 1.4em; }
|
||||
#options { display: none; padding-top: 6px; }
|
||||
|
||||
#options a:first-child { margin-left: 66px; /* Huzzah for decent CSS support, but horrid CSS right here. :D */ }
|
||||
|
||||
a, a:visited { color: #f4d496; text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
|
|
@ -67,16 +93,16 @@ a:hover { text-decoration: underline; }
|
|||
#interface {
|
||||
float: right;
|
||||
width: 460px;
|
||||
margin-top: 23px;
|
||||
margin-top: 35px;
|
||||
}
|
||||
|
||||
#interface p {
|
||||
#uploader { display: none; }
|
||||
|
||||
#interface p, #hsv {
|
||||
font: normal 1.2em/1.5em helvetica, sans-serif;
|
||||
padding: 4px 1px;
|
||||
}
|
||||
|
||||
#hsv a { margin-top: 4px; }
|
||||
|
||||
#img_input {
|
||||
border: 1px solid #c9c9c9;
|
||||
padding: 4px;
|
||||
|
|
@ -86,7 +112,7 @@ a:hover { text-decoration: underline; }
|
|||
width: 370px;
|
||||
}
|
||||
|
||||
#img_submit, #hsv a {
|
||||
.img_submit, #hsv a {
|
||||
border: 1px solid #55a2c9;
|
||||
background-color: #498fb2;
|
||||
color: #fff;
|
||||
|
|
@ -94,15 +120,17 @@ a:hover { text-decoration: underline; }
|
|||
-moz-border-radius: 4px;
|
||||
-webkit-border-radius: 4px;
|
||||
}
|
||||
|
||||
#hsv a {
|
||||
display: block;
|
||||
width: 104px;
|
||||
padding: 0 5px;
|
||||
width: 120px;
|
||||
padding: 3px 5px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#try_these {
|
||||
clear: both;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue