личныйкабинет.css 7.1 KB

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