записьнаприем.css 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. body {
  2. margin: 0;
  3. font-family: sans-serif;
  4. overflow-x: hidden;
  5. background-image: url('../картинки/фон.jpg');
  6. font-family: sans-serif;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. min-height: 100vh;
  11. background-color: #f4f4f4;
  12. background-size: cover;
  13. background-position: center;
  14. height: 1000px;
  15. }
  16. .container {
  17. position: relative;
  18. width: 100%;
  19. overflow: hidden; /* Скрываем переполнение для закругления */
  20. }
  21. section {
  22. margin-top: 120px; /* Отступ сверху */
  23. }
  24. .background-image {
  25. width: 100%;
  26. height: 400px; /* Высота фона */
  27. background-size: cover;
  28. background-position: center;
  29. border-radius: 10px; /* Закругленные углы */
  30. min-height: 100vh
  31. }
  32. .content {
  33. position: absolute;
  34. top: 50%;
  35. left: 50%;
  36. transform: translate(-50%, -50%);
  37. text-align: center;
  38. color: #fff;
  39. z-index: 1; /* Помещаем текст поверх изображения */
  40. }
  41. .content h2 {
  42. font-size: 36px;
  43. margin-bottom: 10px;
  44. color: #fff;
  45. }
  46. h4 {
  47. font-size: 28px;
  48. margin-bottom: 10px;
  49. color: #fff;
  50. }
  51. p {
  52. font-size: 24px;
  53. margin-bottom: 10px;
  54. color: #fff;
  55. }
  56. header {
  57. background-color: transparent;
  58. padding: 20px;
  59. display: flex;
  60. align-items: center;
  61. justify-content: space-between;
  62. position: absolute; /* Помещаем меню поверх изображения */
  63. top: 20px; /* Отступ сверху */
  64. left: 20px; /* Отступ слева */
  65. z-index: 2; /* Помещаем меню поверх текста */
  66. justify-content: space-between;
  67. width: 95%
  68. }
  69. .logo {
  70. font-size: 24px;
  71. font-weight: bold;
  72. color: #0022ff; /* Синий цвет */
  73. text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Тень */
  74. }
  75. nav {
  76. display: flex;
  77. }
  78. nav a {
  79. text-decoration: none;
  80. color: #faf3f3;
  81. padding: 10px 20px;
  82. position: relative;
  83. margin-left: 20px;
  84. }
  85. nav a::after {
  86. content: "";
  87. position: absolute;
  88. bottom: 0;
  89. left: 0;
  90. width: 100%;
  91. height: 3px;
  92. background: linear-gradient(to right, #007bff, #663399, #ff0000); /* Градиент */
  93. transform: scaleX(0);
  94. transition: transform 0.3s ease-in-out;
  95. }
  96. nav a:hover::after {
  97. transform: scaleX(1);
  98. }
  99. .dropdown {
  100. position: relative;
  101. margin-left: 20px;
  102. }
  103. .dropdown-content {
  104. display: none;
  105. position: absolute;
  106. background-color: #f9f9f9;
  107. min-width: 160px;
  108. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  109. z-index: 1;
  110. }
  111. .dropdown-content a {
  112. color: #333;
  113. padding: 12px 16px;
  114. text-decoration: none;
  115. display: block;
  116. }
  117. .dropdown-content a:hover {
  118. background-color: #f1f1f1;
  119. }
  120. .dropdown:hover .dropdown-content {
  121. display: block;
  122. }
  123. .icon {
  124. margin-left: 20px;
  125. cursor: pointer;
  126. }
  127. .icon img {
  128. width: 30px;
  129. height: 30px;
  130. }
  131. /* Стили для фонов */
  132. section {
  133. padding: 50px;
  134. text-align: center;
  135. min-height: 100vh;
  136. }
  137. .data_foot {
  138. display: flex;
  139. flex-direction: column;
  140. align-items: center;
  141. gap: 5px;
  142. }
  143. hr {
  144. width: 100%;
  145. border: 1px solid #D1D1D1;
  146. }
  147. .i:hover svg path {
  148. fill: #D1D1D1;
  149. }
  150. .scroll-to-top {
  151. position: fixed;
  152. bottom: 20px;
  153. right: 20px;
  154. display: none;
  155. z-index: 10;
  156. cursor: pointer;
  157. }
  158. .scroll-to-top img {
  159. width: 50px;
  160. }
  161. .container {
  162. background-color: #fff;
  163. padding: 40px;
  164. border-radius: 5px;
  165. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  166. width: 350px;
  167. background-color: rgba(255, 255, 255, 0.8);
  168. }
  169. h2 {
  170. text-align: center;
  171. margin-bottom: 20px;
  172. color: #333;
  173. }
  174. p {
  175. text-align: center;
  176. margin-bottom: 20px;
  177. color: #333;
  178. }
  179. input[type="email"],
  180. input[type="password"] {
  181. width: 100%;
  182. padding: 12px;
  183. margin-bottom: 15px;
  184. border: 1px solid #ccc;
  185. border-radius: 4px;
  186. box-sizing: border-box;
  187. }
  188. input[type="text"],
  189. input[type="email"],
  190. input[type="tel"],
  191. input[type="password"],
  192. input[type="kod"] {
  193. width: 100%;
  194. padding: 12px;
  195. margin-bottom: 15px;
  196. border: 1px solid #ccc;
  197. border-radius: 4px;
  198. box-sizing: border-box;
  199. }
  200. button {
  201. background-color: #444444;
  202. color: #fff;
  203. padding: 12px 20px;
  204. border: none;
  205. border-radius: 4px;
  206. cursor: pointer;
  207. width: 100%;
  208. }
  209. button:hover {
  210. background-color: #6e6e6e;
  211. }
  212. .register-link {
  213. text-align: center;
  214. margin-top: 15px;
  215. color: #333;
  216. }
  217. .register-link a {
  218. color: #444444;
  219. text-decoration: none;
  220. }
  221. nav a {
  222. text-decoration: none;
  223. color: #faf3f3;
  224. padding: 10px 20px;
  225. position: relative;
  226. margin-left: 20px;
  227. }
  228. nav a::after {
  229. content: "";
  230. position: absolute;
  231. bottom: 0;
  232. left: 0;
  233. width: 100%;
  234. height: 3px;
  235. background: linear-gradient(to right, #ffffff, #ffffff, #ffffff); /* Градиент */
  236. transform: scaleX(0);
  237. transition: transform 0.3s ease-in-out;
  238. }
  239. nav a:hover::after {
  240. transform: scaleX(1);
  241. }
  242. .footer-link {
  243. position: absolute;
  244. bottom: 20px;
  245. left: 50%;
  246. transform: translateX(-50%);
  247. color: white;
  248. text-decoration: none;
  249. font-weight: bold;
  250. background-color: #444444;
  251. padding: 10px 20px;
  252. margin-top: 20px;
  253. border-radius: 5px;
  254. z-index: 2;
  255. }
  256. .footer-link:hover {
  257. background-color: #6e6e6e;
  258. }
  259. .popup {
  260. display: none;
  261. position: fixed;
  262. top: 50%;
  263. left: 50%;
  264. transform: translate(-50%, -50%);
  265. background-color: rgba(80, 80, 80, 0.7);
  266. padding: 20px;
  267. border-radius: 5px;
  268. box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  269. z-index: 1000;
  270. text-align: center;
  271. }
  272. .close-button {
  273. position: absolute;
  274. top: 10px;
  275. right: 10px;
  276. cursor: pointer;
  277. }
  278. .register-link {
  279. text-align: center;
  280. margin-top: 15px;
  281. color: #333;
  282. }
  283. .register-link a {
  284. color: #007bff;
  285. text-decoration: none;
  286. }
  287. nav a {
  288. text-decoration: none;
  289. color: #faf3f3;
  290. padding: 10px 20px;
  291. position: relative;
  292. margin-left: 20px;
  293. }
  294. nav a::after {
  295. content: "";
  296. position: absolute;
  297. bottom: 0;
  298. left: 0;
  299. width: 100%;
  300. height: 3px;
  301. background: linear-gradient(to right, #bebebe, #3a3a3a, #bebebe);
  302. transform: scaleX(0);
  303. transition: transform 0.3s ease-in-out;
  304. }
  305. nav a:hover::after {
  306. transform: scaleX(1);
  307. }
  308. /* Стили для календаря */
  309. input[type="date"] {
  310. padding: 10px;
  311. border: 1px solid #ddd;
  312. border-radius: 5px;
  313. width: 100%;
  314. /* Устанавливаем ширину поля ввода на 100% */
  315. box-sizing: border-box;
  316. /* Включаем padding и border в ширину поля */
  317. }
  318. /* Стили для выбора времени */
  319. input[type="time"] {
  320. padding: 10px;
  321. border: 1px solid #ddd;
  322. border-radius: 5px;
  323. width: 100%;
  324. /* Устанавливаем ширину поля ввода на 100% */
  325. box-sizing: border-box;
  326. /* Включаем padding и border в ширину поля */
  327. }
  328. /* Стили для текстового редактора */
  329. textarea {
  330. padding: 10px;
  331. border: 1px solid #ddd;
  332. border-radius: 5px;
  333. resize: vertical;
  334. /* Разрешаем изменение размера только по вертикали */
  335. height: 100px;
  336. /* Устанавливаем высоту текстового редактора */
  337. width: 100%;
  338. /* Устанавливаем ширину текстового редактора на 100% */
  339. box-sizing: border-box;
  340. /* Включаем padding и border в ширину поля */
  341. }
  342. /* Отступы между полями ввода */
  343. form {
  344. display: flex;
  345. flex-direction: column;
  346. gap: 20px;
  347. /* Добавляем отступ между полями */
  348. }
  349. .popup-content {
  350. padding: 20px;
  351. border-radius: 5px;
  352. max-width: 600px;
  353. width: 100%;
  354. text-align: center; /* Центрируем текст внутри окна */
  355. }
  356. .popup-content h3 {
  357. margin-bottom: 10px; /* Отступ снизу для заголовка */
  358. color: white;
  359. }
  360. .popup-content p {
  361. margin-bottom: 5px; /* Отступ снизу для абзацев */
  362. color: white;
  363. }
  364. .close-button {
  365. color: #aaa;
  366. float: right;
  367. font-size: 28px;
  368. font-weight: bold;
  369. cursor: pointer;
  370. }
  371. .close-button:hover,
  372. .close-button:focus {
  373. color: black;
  374. text-decoration: none;
  375. cursor: pointer;
  376. }
  377. #appointmentsTable {
  378. width: 100%;
  379. border-collapse: collapse;
  380. margin-top: 20px;
  381. }
  382. #appointmentsTable th, #appointmentsTable td {
  383. border: 1px solid #ddd;
  384. padding: 8px;
  385. text-align: left;
  386. }
  387. #appointmentsTable tr:nth-child(even) {
  388. background-color: #f2f2f2;
  389. }
  390. #appointmentsTable th {
  391. background-color: #5585ff;
  392. color: white;
  393. }