style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. body {
  2. font-family: sans-serif;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. header {
  7. background-color: #1AAB8A;
  8. color: #fff;
  9. padding: 20px;
  10. }
  11. nav ul {
  12. list-style: none;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. nav li {
  17. display: inline-block;
  18. margin-left: 20px;
  19. }
  20. nav a {
  21. color: #fff;
  22. text-decoration: none;
  23. font-size: 18px;
  24. }
  25. main {
  26. max-width: 900px;
  27. margin: 0 auto;
  28. padding: 20px;
  29. }
  30. .services ul {
  31. list-style: none;
  32. margin: 0;
  33. padding: 0;
  34. }
  35. .services ul li {
  36. margin-bottom: 10px;
  37. }
  38. .prices table {
  39. border-collapse: collapse;
  40. width: 100%;
  41. margin-top: 20px;
  42. }
  43. .prices th, .prices td {
  44. padding: 10px;
  45. text-align: center;
  46. }
  47. .prices th {
  48. background-color: #1AAB8A;
  49. color: #fff;
  50. }
  51. .prices tr:nth-child(even) {
  52. background-color: #eeeeee;
  53. }
  54. .contact ul {
  55. list-style: none;
  56. margin: 0;
  57. padding: 0;
  58. }
  59. .contact form {
  60. margin-top: 20px;
  61. display: flex;
  62. flex-wrap: wrap;
  63. }
  64. .contact label {
  65. display: block;
  66. margin-bottom: 10px;
  67. flex-basis: 100%;
  68. }
  69. .contact label input, .contact label textarea {
  70. width: 100%;
  71. padding: 10px;
  72. border-radius: 5px;
  73. border: 1px solid #ccc;
  74. margin-top: 5px;
  75. font-size: 16px;
  76. box-sizing: border-box;
  77. }
  78. .contact label input:focus, .contact label textarea:focus {
  79. outline: none;
  80. border-color: #1AAB8A;
  81. }
  82. .contact button[type="submit"] {
  83. background-color: #1AAB8A;
  84. color: #fff;
  85. border: none;
  86. padding: 10px 20px;
  87. margin-top: 20px;
  88. border-radius: 5px;
  89. font-size: 18px;
  90. cursor: pointer;
  91. }