Added a lot of CSS to the page - looks more bearable

This commit is contained in:
alopexc0de 2012-12-24 21:35:13 -05:00
parent 8aeed8c68c
commit 3baec6c445
1 changed files with 68 additions and 0 deletions

68
short/style.css Normal file
View File

@ -0,0 +1,68 @@
#content{
text-align: center;
background: #336666;
color: #66FF00;
float: center;
}
.api {
display: none;
border-top: 1px solid #666;
border-bottom: 1px solid #666;
}
select,
textarea,
input[type="text"],
.uneditable-input {
text-align: center;
border-color: #B333E5;
border:0px solid gray;
resize:none;
background-color:#666666;
color:#ffffff;
outline:0;
padding:5px;
border-radius:30px;
-webkit-box-shadow:0px 0px 20px 1px gray;
}
select,
textarea:focus,
input[type="text"]:focus,
.uneditable-input:focus {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important;
border:0px solid gray;
resize:none;
background-color:grey;
color:#ffffff;
outline:0;
padding:5px;
border-radius:30px;
-webkit-box-shadow:0px 0px 20px 1px gray;
}
input[type="submit"]:hover {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important;
border:0px solid gray;
resize:none;
background-color:#F7FBFA;
color:#000;
outline:2px;
padding:5px;
border-radius:30px;
-webkit-box-shadow:0px 0px 20px 1px gray;
}
input[type="submit"] {
-webkit-transition: width 0.6s ease;
-moz-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
border:0px solid gray;
resize:none;
background-color:#D7D1F8;
color:#000;
outline:0;
padding:5px;
border-radius:30px;
-webkit-box-shadow:0px 0px 15px 1px #333333;
}