123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- body {
- margin: 0;
- font-family: sans-serif;
- overflow-x: hidden;
- background-image: url('../картинки/фон.jpg');
- font-family: sans-serif;
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 100vh;
- background-color: #f4f4f4;
- background-size: cover;
- background-position: center;
- height: 1000px;
- }
- .container {
- position: relative;
- width: 100%;
- overflow: hidden; /* Скрываем переполнение для закругления */
- }
- section {
-
- margin-top: 120px; /* Отступ сверху */
- }
- .background-image {
- width: 100%;
- height: 400px; /* Высота фона */
- background-size: cover;
- background-position: center;
- border-radius: 10px; /* Закругленные углы */
- min-height: 100vh
- }
- .content {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- text-align: center;
- color: #fff;
- z-index: 1; /* Помещаем текст поверх изображения */
- }
- .content h2 {
- font-size: 36px;
- margin-bottom: 10px;
- color: #fff;
- }
- h4 {
- font-size: 28px;
- margin-bottom: 10px;
- color: #fff;
- }
- p {
- font-size: 24px;
- margin-bottom: 10px;
- color: #fff;
- }
- header {
- background-color: transparent;
- padding: 20px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: absolute; /* Помещаем меню поверх изображения */
- top: 20px; /* Отступ сверху */
- left: 20px; /* Отступ слева */
- z-index: 2; /* Помещаем меню поверх текста */
- justify-content: space-between;
- width: 95%
- }
- .logo {
- font-size: 24px;
- font-weight: bold;
- color: #0022ff; /* Синий цвет */
- text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Тень */
- }
- nav {
- display: flex;
- }
- nav a {
- text-decoration: none;
- color: #faf3f3;
- padding: 10px 20px;
- position: relative;
- margin-left: 20px;
- }
- nav a::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: linear-gradient(to right, #007bff, #663399, #ff0000); /* Градиент */
- transform: scaleX(0);
- transition: transform 0.3s ease-in-out;
- }
- nav a:hover::after {
- transform: scaleX(1);
- }
- .dropdown {
- position: relative;
- margin-left: 20px;
- }
- .dropdown-content {
- display: none;
- position: absolute;
- background-color: #f9f9f9;
- min-width: 160px;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
- z-index: 1;
- }
- .dropdown-content a {
- color: #333;
- padding: 12px 16px;
- text-decoration: none;
- display: block;
- }
- .dropdown-content a:hover {
- background-color: #f1f1f1;
- }
- .dropdown:hover .dropdown-content {
- display: block;
- }
- .icon {
- margin-left: 20px;
- cursor: pointer;
- }
- .icon img {
- width: 30px;
- height: 30px;
- }
- /* Стили для фонов */
- section {
- padding: 50px;
- text-align: center;
- min-height: 100vh;
- }
- .data_foot {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 5px;
- }
- hr {
- width: 100%;
- border: 1px solid #D1D1D1;
- }
- .i:hover svg path {
- fill: #D1D1D1;
- }
- .scroll-to-top {
- position: fixed;
- bottom: 20px;
- right: 20px;
- display: none;
- z-index: 10;
- cursor: pointer;
- }
- .scroll-to-top img {
- width: 50px;
- }
- .container {
- background-color: #fff;
- padding: 40px;
- border-radius: 5px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- width: 350px;
- background-color: rgba(255, 255, 255, 0.8);
- }
- h2 {
- text-align: center;
- margin-bottom: 20px;
- color: #333;
- }
- p {
- text-align: center;
- margin-bottom: 20px;
- color: #333;
- }
- input[type="email"],
- input[type="password"] {
- width: 100%;
- padding: 12px;
- margin-bottom: 15px;
- border: 1px solid #ccc;
- border-radius: 4px;
- box-sizing: border-box;
- }
- input[type="text"],
- input[type="email"],
- input[type="tel"],
- input[type="password"],
- input[type="kod"] {
- width: 100%;
- padding: 12px;
- margin-bottom: 15px;
- border: 1px solid #ccc;
- border-radius: 4px;
- box-sizing: border-box;
- }
- button {
- background-color: #444444;
- color: #fff;
- padding: 12px 20px;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- width: 100%;
- }
- button:hover {
- background-color: #6e6e6e;
- }
- .register-link {
- text-align: center;
- margin-top: 15px;
- color: #333;
- }
- .register-link a {
- color: #444444;
- text-decoration: none;
- }
- nav a {
- text-decoration: none;
- color: #faf3f3;
- padding: 10px 20px;
- position: relative;
- margin-left: 20px;
- }
- nav a::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: linear-gradient(to right, #ffffff, #ffffff, #ffffff); /* Градиент */
- transform: scaleX(0);
- transition: transform 0.3s ease-in-out;
- }
- nav a:hover::after {
- transform: scaleX(1);
- }
- .footer-link {
- position: absolute;
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- color: white;
- text-decoration: none;
- font-weight: bold;
- background-color: #444444;
- padding: 10px 20px;
- margin-top: 20px;
- border-radius: 5px;
- z-index: 2;
- }
- .footer-link:hover {
- background-color: #6e6e6e;
- }
- .popup {
- display: none;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background-color: rgba(80, 80, 80, 0.7);
- padding: 20px;
- border-radius: 5px;
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
- z-index: 1000;
- text-align: center;
- }
- .close-button {
- position: absolute;
- top: 10px;
- right: 10px;
- cursor: pointer;
- }
- .register-link {
- text-align: center;
- margin-top: 15px;
- color: #333;
- }
- .register-link a {
- color: #007bff;
- text-decoration: none;
- }
- nav a {
- text-decoration: none;
- color: #faf3f3;
- padding: 10px 20px;
- position: relative;
- margin-left: 20px;
- }
- nav a::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: linear-gradient(to right, #bebebe, #3a3a3a, #bebebe);
- transform: scaleX(0);
- transition: transform 0.3s ease-in-out;
- }
- nav a:hover::after {
- transform: scaleX(1);
- }
- /* Стили для календаря */
- input[type="date"] {
- padding: 10px;
- border: 1px solid #ddd;
- border-radius: 5px;
- width: 100%;
- /* Устанавливаем ширину поля ввода на 100% */
- box-sizing: border-box;
- /* Включаем padding и border в ширину поля */
- }
-
- /* Стили для выбора времени */
- input[type="time"] {
- padding: 10px;
- border: 1px solid #ddd;
- border-radius: 5px;
- width: 100%;
- /* Устанавливаем ширину поля ввода на 100% */
- box-sizing: border-box;
- /* Включаем padding и border в ширину поля */
- }
-
- /* Стили для текстового редактора */
- textarea {
- padding: 10px;
- border: 1px solid #ddd;
- border-radius: 5px;
- resize: vertical;
- /* Разрешаем изменение размера только по вертикали */
- height: 100px;
- /* Устанавливаем высоту текстового редактора */
- width: 100%;
- /* Устанавливаем ширину текстового редактора на 100% */
- box-sizing: border-box;
- /* Включаем padding и border в ширину поля */
- }
-
- /* Отступы между полями ввода */
- form {
- display: flex;
- flex-direction: column;
- gap: 20px;
- /* Добавляем отступ между полями */
- }
-
- .popup-content {
- padding: 20px;
- border-radius: 5px;
- max-width: 600px;
- width: 100%;
- text-align: center; /* Центрируем текст внутри окна */
- }
-
- .popup-content h3 {
- margin-bottom: 10px; /* Отступ снизу для заголовка */
- color: white;
- }
-
- .popup-content p {
- margin-bottom: 5px; /* Отступ снизу для абзацев */
- color: white;
- }
-
- .close-button {
- color: #aaa;
- float: right;
- font-size: 28px;
- font-weight: bold;
- cursor: pointer;
- }
-
- .close-button:hover,
- .close-button:focus {
- color: black;
- text-decoration: none;
- cursor: pointer;
- }
- #appointmentsTable {
- width: 100%;
- border-collapse: collapse;
- margin-top: 20px;
- }
- #appointmentsTable th, #appointmentsTable td {
- border: 1px solid #ddd;
- padding: 8px;
- text-align: left;
- }
- #appointmentsTable tr:nth-child(even) {
- background-color: #f2f2f2;
- }
- #appointmentsTable th {
- background-color: #5585ff;
- color: white;
- }
|