Guest User

Untitled

a guest
May 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. *{
  2. margin:0;
  3. padding:0;
  4. }
  5. textarea, input{
  6. outline:none;
  7. }
  8. body{
  9. background:#3D3D3D;
  10. }
  11. #page-wrap{
  12. width:350px;
  13. min-height:500px;
  14. height:auto;
  15. margin:0 auto;
  16. position:relative;
  17. padding-top:50px;
  18. font:15px Arial;
  19. }
  20.  
  21. #myform{
  22. width:375px;
  23. -moz-border-radius: 8px; /* FF1+ */
  24. -webkit-border-radius: 8px; /* Saf3+, Chrome */
  25. border-radius: 8px; /* Opera 10.5, IE 9 */
  26. margin:0 auto;
  27. position:relative;
  28. }
  29. #myform label{
  30. top:10px;
  31. position:relative;
  32. color:white;
  33. }
  34. .field{
  35. background:gray;
  36. padding:15px 15px 0 10px;
  37. height:50px;
  38. width:350px;
  39. }
  40. #myform div:first-child{
  41. -moz-border-radius-topleft: 8px;
  42. -moz-border-radius-topright: 8px;
  43. -webkit-border-top-left-radius: 8px;
  44. -webkit-border-top-right-radius: 8px;
  45. border-top-left-radius: 8px;
  46. border-top-right-radius: 8px;
  47. }
  48. #myform div:last-child{
  49. -moz-border-radius-bottomleft: 8px;
  50. -moz-border-radius-bottomright: 8px;
  51. -webkit-border-bottom-left-radius: 8px;
  52. -webkit-border-bottom-right-radius: 8px;
  53. border-bottom-left-radius: 8px;
  54. border-bottom-right-radius: 8px;
  55. }
  56. .area{
  57. padding:15px 15px 0 10px;
  58. min-height:195px;
  59. }
  60. .inputfield{
  61. padding:0 10px 0 10px;
  62. float:right;
  63. width:200px;
  64. font:15px Arial;
  65. border:2px aqua inset;
  66.  
  67. -moz-border-radius: 8px; /* FF1+ */
  68. -webkit-border-radius: 8px; /* Saf3+, Chrome */
  69. border-radius: 8px; /* Opera 10.5, IE 9 */
  70. }
  71.  
  72. .textfield{
  73. height:25px;
  74. padding-top:5px;
  75. }
  76. .textarea1{
  77. padding-top:10px;
  78. padding-bottom:10px;
  79. height:150px;
  80. max-height:200px;
  81. max-width:250px;
  82. }
Add Comment
Please, Sign In to add comment