login.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. body {
  2. background-image: url(../images/back_main_one.jpg);
  3. }
  4. .login_page {
  5. background-color: #dbc3af;
  6. width: 90%;
  7. height: 55%;
  8. margin-left: 5%;
  9. margin-right: 5%;
  10. margin-top: 5%;
  11. border-radius: 22px;
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .header_title {
  17. text-align: center;
  18. width: 100%;
  19. height: auto;
  20. transition: font-size 0.5s ease-in, text-shadow 1s ease-in;
  21. }
  22. .header_title:hover {
  23. font-size: 53;
  24. text-shadow: 0px 0px 20px #ffffff;
  25. }
  26. .login {
  27. width: 60%;
  28. align-self: center;
  29. justify-content: center;
  30. }
  31. .buttons_from {
  32. width: 100%;
  33. display: inline-flex;
  34. align-items: center;
  35. justify-content: space-evenly;
  36. }
  37. .button {
  38. width: 150px;
  39. height: 35px;
  40. border-radius: 5px;
  41. text-align: center;
  42. background-color: #000000;
  43. color: #ffffff;
  44. font: bold;
  45. margin-left: 5px;
  46. margin-top: 5px;
  47. transition: background-color 0.5s ease-in, border-radius 1s ease-in, box-shadow 1s ease-in;
  48. }
  49. .button:hover {
  50. background-color: #61350f;
  51. border-color: #61350f;
  52. color: #ffffff;
  53. border-radius: 7px;
  54. box-shadow: 0px 0px 50px #fff;
  55. }
  56. .data_block {
  57. width: 100%;
  58. display: inline-flex;
  59. justify-content: space-evenly;
  60. }
  61. .box {
  62. display: inline-flex;
  63. align-content: center;
  64. }
  65. .register {
  66. width: 100%;
  67. height: 100%;
  68. text-align: center;
  69. }