style_LA.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. body {
  2. font-family: 'Tactic Round', sans-serif;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. header {
  7. background-color: #C78E66;
  8. color: white;
  9. display: flex;
  10. justify-content: space-between;
  11. padding: 10px 20px;
  12. }
  13. header a {
  14. color: white;
  15. text-decoration: none;
  16. margin: 0 10px;
  17. font-size: 18px;
  18. transition: all ease 0.3s;
  19. }
  20. header a:hover {
  21. color: #333;
  22. }
  23. main {
  24. display: flex;
  25. flex-wrap: wrap;
  26. padding: 20px;
  27. }
  28. section {
  29. width: 100%;
  30. margin-bottom: 20px;
  31. }
  32. section h2 {
  33. margin-bottom: 10px;
  34. color: #C78E66;
  35. font-size: 24px;
  36. }
  37. form {
  38. display: flex;
  39. flex-wrap: wrap;
  40. margin-bottom: 10px;
  41. }
  42. label {
  43. width: 100%;
  44. margin-bottom: 5px;
  45. color: #C78E66;
  46. font-size: 16px;
  47. }
  48. input[type="text"],
  49. input[type="date"],
  50. input[type="time"],
  51. select {
  52. width: 100%;
  53. padding: 5px;
  54. margin-bottom: 10px;
  55. border: 1px solid #C78E66;
  56. background-color: rgba(255, 255, 255, 0);
  57. color: #C78E66;
  58. font-size: 16px;
  59. transition: all ease 0.3s;
  60. }
  61. input[type="text"]:focus,
  62. input[type="date"]:focus,
  63. input[type="time"]:focus,
  64. select:focus {
  65. outline: none;
  66. border-color: #333;
  67. }
  68. button[type="submit"] {
  69. width: 310px;
  70. height: 40px;
  71. display: flex;
  72. justify-content: space-around;
  73. align-items: center;
  74. border: 1px solid white;
  75. background-color: #C78E66;
  76. color: white;
  77. font-size: 18px;
  78. transition: all ease 0.3s;
  79. cursor: pointer;
  80. }
  81. button[type="submit"]:hover {
  82. background-color: #333;
  83. border-color: #333;
  84. }
  85. button#changePassword {
  86. width: 310px;
  87. height: 40px;
  88. display: flex;
  89. justify-content: space-around;
  90. align-items: center;
  91. border: 1px solid white;
  92. background-color: rgba(255, 255, 255, 0);
  93. color: #C78E66;
  94. font-size: 18px;
  95. transition: all ease 0.3s;
  96. cursor: pointer;
  97. margin-bottom: 10px;
  98. }
  99. button#changePassword:hover {
  100. background-color: #C78E66;
  101. color: white;
  102. }
  103. footer {
  104. background-color: #C78E66;
  105. color: white;
  106. display: flex;
  107. justify-content: center;
  108. padding: 10px;
  109. font-size: 16px;
  110. }
  111. footer p {
  112. margin: 0;
  113. }
  114. .center {
  115. text-align: center;
  116. font-size: 0.75em;
  117. }
  118. .block_auth {
  119. position: relative;
  120. }
  121. .close {
  122. position: absolute;
  123. top: 0;
  124. right: 0;
  125. font-size: 1.5em;
  126. cursor: pointer;
  127. color: #ccc;
  128. }
  129. .profile-picture {
  130. width: 100px;
  131. height: 100px;
  132. border-radius: 50%;
  133. background-color: #C78E66;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. cursor: pointer;
  138. background-size: cover;
  139. }
  140. .profile-picture:hover {
  141. background-color: #996945;
  142. }
  143. .profile-picture .plus {
  144. font-size: 2em;
  145. color: white;
  146. }
  147. .close {
  148. position: absolute;
  149. top: 10px;
  150. right: 10px;
  151. font-size: 24px;
  152. cursor: pointer;
  153. color: #777;
  154. }