diff options
| author | root | 2014-09-13 22:26:58 +0200 |
|---|---|---|
| committer | root | 2014-09-13 22:26:58 +0200 |
| commit | c5639ee890215e4e8e0f544821ea8d285ca58eb8 (patch) | |
| tree | 29f685943c61c4d7ec0e376e485686e985b97065 /css/form.css | |
| parent | f8c60cae423fc78ed21d17a9217716ccc1e6dab1 (diff) | |
| download | video-dl-c5639ee890215e4e8e0f544821ea8d285ca58eb8.tar.gz | |
init
Diffstat (limited to 'css/form.css')
| -rw-r--r-- | css/form.css | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/css/form.css b/css/form.css new file mode 100644 index 0000000..879c734 --- /dev/null +++ b/css/form.css @@ -0,0 +1,85 @@ +input[type=text]{ + border: none; + box-shadow: inset 0px 0px 1px 1px #1F3D4C; + border-radius: 0; + height: 35px; + font-size: 25px; + margin-top: 15px; + width: 600px; + padding-left: 5px; +} + +#middle { + position: absolute; + left: 50%; + margin-left: -300px; + top: 45%; + margin-top: -200px; + width: 600px; + height: 400px; + text-align: center; +} + +.button { + -moz-box-shadow:inset 0px 1px 0px 0px #dcecfb; + -webkit-box-shadow:inset 0px 1px 0px 0px #dcecfb; + box-shadow:inset 0px 1px 0px 0px #dcecfb; + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bddbfa), color-stop(1, #80b5ea) ); + background:-moz-linear-gradient( center top, #bddbfa 5%, #80b5ea 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bddbfa', endColorstr='#80b5ea'); + background-color:#bddbfa; + -webkit-border-top-left-radius:0px; + -moz-border-radius-topleft:0px; + border-top-left-radius:0px; + -webkit-border-top-right-radius:0px; + -moz-border-radius-topright:0px; + border-top-right-radius:0px; + -webkit-border-bottom-right-radius:0px; + -moz-border-radius-bottomright:0px; + border-bottom-right-radius:0px; + -webkit-border-bottom-left-radius:0px; + -moz-border-radius-bottomleft:0px; + border-bottom-left-radius:0px; + text-indent:0; + border:1px solid #84bbf3; + display:inline; +/* display:inline-block; + display:block; */ + color:#ffffff; + font-size:15px; + font-weight:bold; + font-style:normal; + height:40px; + line-height:40px; + width:100px; + text-decoration:none; + text-align:center; + text-shadow:1px 1px 0px #528ecc; +} +.button:hover { + background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #80b5ea), color-stop(1, #bddbfa) ); + background:-moz-linear-gradient( center top, #80b5ea 5%, #bddbfa 100% ); + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80b5ea', endColorstr='#bddbfa'); + background-color:#80b5ea; +}.button:active { + position:relative; + top:1px; +} + + +#button-input{ + height: 40px; + width: 120px; + border: none; + box-shadow: inset 0px 0px 1px 1px #1F3D4C; + border-radius: 0; + font-size: 25px; + margin-top: 15px; + display:block; + + border: none; + margin-top: 15px; + margin-bottom: 15px; + display:block; + padding-left: 5px; +} |
