Advertisement
Guest User

CSS

a guest
Sep 15th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.49 KB | None | 0 0
  1. *{
  2. margin: auto;
  3. padding: auto;
  4. font-family: Tahoma, arial, sans-serif;
  5. color: white;
  6. }
  7. #wrapper{
  8. width: 60%;
  9. height: 600px;
  10. background-color: #3F6599;
  11. }
  12. #logo{
  13. font-family: Tahoma, arial, sans-serif;
  14. font-size: 100px;
  15. color: white;
  16. text-align: center;
  17. font-weight: 900;
  18. }
  19. #logo span{
  20. font-size: 15px;
  21. font-weight: 100;
  22. }
  23. div h1{
  24. text-align: center;
  25. font-weight:bold;
  26. }
  27. div h6{
  28. text-align: center;
  29. font-size: 17px;
  30. }
  31. #section1{
  32. width: 35%;
  33. float: left;
  34. margin-left: 10px;
  35. padding: 20px;
  36. margin-top: 40px;
  37. font-size: 13px;
  38. }
  39. #section2{
  40. width: 52%;
  41. float: right;;
  42. margin-right: 10px;
  43. padding: 20px;
  44. margin-top: 40px;
  45. font-size: 13px;
  46. }
  47. #section1 fieldset{
  48. border-radius: 10px;
  49. padding: 10px;
  50. height: 200px;
  51. }
  52. #section1 input{
  53. width:118px;
  54. border-radius: 5px;
  55. margin: 3px;
  56.  
  57. }
  58. #section2 fieldset{
  59. border-radius: 10px;
  60. padding: 10px;
  61. height: 200px;
  62. }
  63. #section1 fieldset input[type="datetime"]{
  64. width:180px;
  65. }
  66. #radio{
  67. display: inline-block;
  68. float: left;
  69. padding: 0;
  70. }
  71.  
  72.  
  73. #section2 fieldset input[type="number"]{
  74. width: 60px;
  75. }
  76. #section2 input{
  77. width:118px;
  78. border-radius: 5px;
  79. margin: 3px;
  80. }
  81. #section2 textarea{
  82. width: 97%;
  83. height: 50px;
  84. }
  85. #section3 input[type="reset"]{
  86. padding: 15px;
  87. margin-left: 30px;
  88. width: 290px;
  89. border-radius: 10px;
  90. color: #3F6599;
  91. font-weight: bold;
  92. }
  93.  
  94. #section3 button {
  95. float:right;
  96. width:430px;
  97. color: #3F6599;
  98. border-radius: 10px;
  99. height: 50px;
  100. margin-right: 27px;
  101. font-weight: normal;
  102. font-size: 20px;
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement