Main.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #body {
  2. margin: 0;
  3. padding: 0;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. min-height: 90vh;
  8. font-family: 'Telefon Black', Sans-Serif;
  9. }
  10. .box {
  11. position: relative;
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. background: #170422;
  16. max-width: 500px;
  17. }
  18. .box::before {
  19. content: '';
  20. position: absolute;
  21. top: -2px;
  22. left: -2px;
  23. right: -2px;
  24. bottom: -2px;
  25. background: #fff;
  26. z-index: -1;
  27. }
  28. .box::after {
  29. content: '';
  30. position: absolute;
  31. top: -2px;
  32. left: -2px;
  33. right: -2px;
  34. bottom: -2px;
  35. background: #fff;
  36. z-index: -2;
  37. filter: blur(40px);
  38. }
  39. .box::before,
  40. .box::after {
  41. background: linear-gradient(235deg, #89ff00, #060c21, #00bcd4);
  42. }
  43. .content {
  44. padding: 40px;
  45. box-sizing: border-box;
  46. color: #ffffff;
  47. font-size: 20px;
  48. }
  49. .btn_form {
  50. width: 180px;
  51. height: 40px;
  52. text-decoration: none;
  53. color: #c9b6cf;
  54. text-align: center;
  55. line-height: 20px;
  56. display: block;
  57. margin-left: 10px;
  58. margin-right: 10px;
  59. font: normal 17px arial;
  60. cursor: pointer;
  61. }
  62. .btn_form:not(.active) {
  63. box-shadow: inset 0 1px 1px rgba(111, 55, 125, 0.8), inset 0 -1px 0px rgba(63, 59, 113, 0.2), 0 9px 16px 0 rgba(0, 0, 0, 0.3), 0 4px 3px 0 rgba(0, 0, 0, 0.3), 0 0 0 1px #150a1e;
  64. background-image: linear-gradient(#3b2751, #271739);
  65. text-shadow: 0 0 21px rgba(223, 206, 228, 0.5), 0 -1px 0 #311d47;
  66. }
  67. .btn_form:not(.active):hover,
  68. .btn_form:not(.active):focus {
  69. transition: color 200ms linear, text-shadow 500ms linear;
  70. color: #fff;
  71. text-shadow: 0 0 21px rgba(223, 206, 228, 0.5), 0 0 10px rgba(223, 206, 228, 0.4), 0 0 2px #2a153c;
  72. }
  73. .btn_form:not(:hover) {
  74. transition: 0.6s;
  75. }
  76. .card {
  77. width: 500px;
  78. height: 360px;
  79. padding-left: 100px;
  80. margin-left: 470px;
  81. margin-top: 100px;
  82. padding-top: 10px;
  83. background: linear-gradient(#f0e2ef, #faf5f5);
  84. -webkit-box-shadow: inset 0 0 40px rgb(36, 16, 61);
  85. -moz-box-shadow: inset 0 0 40px rgb(37, 12, 58);
  86. box-shadow: inset 0 0 40px rgb(26, 10, 48);
  87. }
  88. .nick_style {
  89. display: block;
  90. width: 100px;
  91. margin-left: 115px;
  92. }
  93. .block_search {
  94. display: flex;
  95. justify-content: center;
  96. align-items: center;
  97. }
  98. .btn_search {
  99. width: 180px;
  100. height: 40px;
  101. text-decoration: none;
  102. color: #b5a2bb;
  103. margin-right: 200px;
  104. text-align: center;
  105. line-height: 20px;
  106. font: normal 17px arial;
  107. cursor: pointer;
  108. margin-bottom: 10px;
  109. }
  110. .btn_search:not(.active) {
  111. box-shadow: inset 0 1px 1px rgba(111, 55, 125, 0.8), inset 0 -1px 0px rgba(63, 59, 113, 0.2), 0 9px 16px 0 rgba(0, 0, 0, 0.3), 0 4px 3px 0 rgba(0, 0, 0, 0.3), 0 0 0 1px #150a1e;
  112. background-image: linear-gradient(#3b2751, #271739);
  113. text-shadow: 0 0 21px rgba(223, 206, 228, 0.5), 0 -1px 0 #311d47;
  114. }
  115. .btn_search:not(.active):hover,
  116. .btn_search:not(.active):focus {
  117. transition: color 200ms linear, text-shadow 500ms linear;
  118. color: #fff;
  119. text-shadow: 0 0 21px rgba(223, 206, 228, 0.5), 0 0 10px rgba(223, 206, 228, 0.4), 0 0 2px #2a153c;
  120. }
  121. .btn_search:not(:hover) {
  122. transition: 0.6s;
  123. }
  124. .block_button_back {
  125. padding-top: 20px;
  126. }