index.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @import "./css/register.css";
  2. :root{
  3. --primary: #d7263d;
  4. --accent: #f46036;
  5. --dark: #1a1a1a;
  6. --gray: #2e2e2e;
  7. --text: #f2f2f2;
  8. --success: #4caf50;
  9. --warning: #ffc107;
  10. }
  11. *{
  12. margin: 0;
  13. padding: 0;
  14. box-sizing: border-box;
  15. color: var(--text);
  16. }
  17. .page{
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. height: 100vh;
  22. width: 100vw;
  23. background: var(--dark);
  24. }
  25. .logo{
  26. position: absolute;
  27. top: 5px;
  28. left: 5px;
  29. }
  30. #notifier{
  31. position: fixed;
  32. bottom: 15px;
  33. left: 15px;
  34. font-size: 22px;
  35. padding: 25px;
  36. width: calc(100% - 30px);
  37. text-align: center;
  38. z-index: 100;
  39. }
  40. #notifier.error{
  41. background: var(--warning);
  42. color: var(--gray);
  43. }
  44. #notifier.success{
  45. background: var(--success);
  46. }
  47. .standardForm{
  48. display: flex;
  49. flex-direction: column;
  50. background: var(--gray);
  51. padding: 35px;
  52. width: 100%;
  53. max-width: 550px;
  54. }
  55. .standardForm h1{
  56. font-size: 35px;
  57. text-align: center;
  58. }
  59. .standardForm label{
  60. display: flex;
  61. flex-direction: column;
  62. font-size: 22px;
  63. margin: 10px 0;
  64. }
  65. .standardForm input{
  66. font-size: 22px;
  67. color: var(--gray);
  68. }
  69. .standardForm button{
  70. font-size: 26px;
  71. background: var(--accent);
  72. margin-top: 35px;
  73. padding: 10px 0;
  74. cursor: pointer;
  75. }
  76. .link{
  77. background: none;
  78. border: none;
  79. font-size: 22px;
  80. cursor: pointer;
  81. text-decoration: underline;
  82. }