Advertisement
Guest User

css stryle

a guest
Jul 4th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <style type="text/css" media="screen">
  2.  
  3. body {
  4.  
  5. background: #ddeef6;
  6. padding: 0;
  7. margin: 0;
  8.  
  9. }
  10.  
  11. body, input, select, textarea {
  12.  
  13. font-family: Verdana, Tahoma, Arial;
  14. font-size: 11px;
  15. color: #333;
  16.  
  17. }
  18.  
  19. form {
  20.  
  21. padding: 0;
  22. margin: 0;
  23.  
  24. }
  25.  
  26. .wrapper {
  27.  
  28. background-color: #fcfcfc;
  29. width: 450px;
  30. margin: auto;
  31. padding: 5px;
  32. margin-top: 15px;
  33.  
  34. }
  35.  
  36. .title {
  37.  
  38. padding: 5px;
  39. margin-bottom: 5px;
  40. font-size: 14px;
  41. font-weight: bold;
  42. background-color: #eee;
  43. color: #444;
  44.  
  45. }
  46.  
  47. .content {
  48.  
  49. padding: 5px;
  50.  
  51. }
  52.  
  53. .good, .bad {
  54.  
  55. padding: 5px;
  56. margin-bottom: 5px;
  57.  
  58. }
  59.  
  60. .good strong, .bad strong {
  61.  
  62. font-size: 14px;
  63. font-weight: bold;
  64.  
  65. }
  66.  
  67. .good {
  68.  
  69. background-color: #d9ffcf;
  70. border-color: #ade5a3;
  71. color: #1b801b;
  72.  
  73. }
  74.  
  75. .bad {
  76.  
  77. background-color: #ffcfcf;
  78. border-color: #e5a3a3;
  79. color: #801b1b;
  80.  
  81. }
  82.  
  83. input, select, textarea {
  84.  
  85. border: 1px #e0e0e0 solid;
  86. border-bottom-width: 2px;
  87. padding: 3px;
  88.  
  89. }
  90.  
  91. input {
  92.  
  93. width: 170px;
  94.  
  95. }
  96.  
  97. input.button {
  98.  
  99. width: auto;
  100. cursor: pointer;
  101. background: #eee;
  102.  
  103. }
  104.  
  105. select {
  106.  
  107. width: 176px;
  108.  
  109. }
  110.  
  111. textarea {
  112.  
  113. width: 288px;
  114.  
  115. }
  116.  
  117. label {
  118.  
  119. display: block;
  120. padding: 3px;
  121.  
  122. }
  123.  
  124. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement