Advertisement
Guest User

CSS

a guest
Feb 18th, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <style>
  2. body{
  3. font-family:arial;
  4. color:#666;
  5. }
  6. form input{
  7. border:2px solid #dadada;
  8. border-radius:7px;
  9. font-size:14px;
  10. padding:5px;
  11. width:200px;
  12. }
  13. input:focus {
  14. outline:none;
  15. border-color:#9ecaed;
  16. box-shadow:0 0 10px #9ecaed;
  17. }
  18. .text_div
  19. {
  20. display:inline-block;
  21. width:300px;
  22. margin-bottom:10px;
  23. }
  24. .left{
  25. float:left;
  26. width:230px;
  27. }
  28. .right{
  29. float:right;
  30. width:70px;
  31. padding-top: 11px;
  32. }
  33. img{
  34. cursor:pointer;
  35. }
  36. .inline
  37. {
  38. display:inline-block;
  39. }
  40. #submit
  41. {
  42. background: -moz-linear-gradient(top, #00b7ea 21%, #009ec3 76%); /* FF3.6+ */
  43. background: -webkit-gradient(linear, left top, left bottom, color-stop(21%,#00b7ea), color-stop(76%,#009ec3)); /* Chrome,Safari4+ */
  44. background: -webkit-linear-gradient(top, #00b7ea 21%,#009ec3 76%); /* Chrome10+,Safari5.1+ */
  45. background: -o-linear-gradient(top, #00b7ea 21%,#009ec3 76%); /* Opera 11.10+ */
  46. background: -ms-linear-gradient(top, #00b7ea 21%,#009ec3 76%); /* IE10+ */
  47. background: linear-gradient(to bottom, #00b7ea 21%,#009ec3 76%); /* W3C */
  48. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b7ea', endColorstr='#009ec3',GradientType=0 ); /* IE6-9 */
  49. color:#DFE9EC;
  50. border:none;
  51. cursor:pointer;
  52. padding:7px;
  53. }
  54. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement