Advertisement
katubug

problem 2 css

Apr 20th, 2022
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. body {
  2. color:#242424;
  3. font-family:Verdana, Geneva, Tahoma, sans-serif;
  4. font-weight: 400;
  5. }
  6.  
  7. th {
  8. background:#378068;
  9. color: #e8e8e8;
  10. font-size: 1.5em;
  11. }
  12.  
  13. td, th {
  14. padding: 10px 15px 10px 15px;
  15. border-left: 1px solid #ada693;
  16. border-right: 1px solid #ada693;
  17. }
  18.  
  19. table {
  20. font-size:small;
  21. width:800px;
  22. border-collapse:collapse;
  23. }
  24.  
  25. tr:nth-child(odd) {
  26. background-color: #e0dac8;
  27. }
  28.  
  29. .curveleft {
  30. border-top-left-radius: 5px;
  31. }
  32.  
  33. .curveright {
  34. border-top-right-radius: 5px;
  35. }
  36.  
  37. .form {
  38. list-style:none;
  39. }
  40.  
  41. form {
  42. width:100%;
  43. margin: 0 auto;
  44. }
  45.  
  46. .email {
  47. font-size: small;
  48. display:inline-block;
  49. margin-left:30%;
  50. width: 30%;
  51. text-align: left;
  52. }
  53.  
  54.  
  55. label, input {
  56. display:inline-block;
  57. vertical-align: top;
  58. width:30%;
  59. text-align: right;
  60. }
  61.  
  62. input {
  63. background-color: khaki;
  64. border-right: 0px;
  65. border-bottom: 0px;
  66. margin: 2px;
  67. box-sizing: border-box;
  68. }
  69.  
  70. .ftable {
  71. background: #fff;
  72. border: 1px solid black;
  73. }
  74.  
  75. caption {
  76. font-weight:bold;
  77. color: blue;
  78. text-align: left;
  79. background-color: #fff;
  80. vertical-align: -10px;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement