index.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #notifier{
  26. position: fixed;
  27. bottom: 15px;
  28. left: 15px;
  29. font-size: 22px;
  30. padding: 25px;
  31. width: calc(100% - 30px);
  32. text-align: center;
  33. z-index: 100;
  34. }
  35. #notifier.error{
  36. background: var(--warning);
  37. color: var(--gray);
  38. }
  39. #notifier.success{
  40. background: var(--success);
  41. }
  42. .standardForm{
  43. display: flex;
  44. flex-direction: column;
  45. background: var(--gray);
  46. padding: 35px;
  47. width: 100%;
  48. max-width: 550px;
  49. }
  50. .standardForm h1{
  51. font-size: 35px;
  52. text-align: center;
  53. }
  54. .standardForm label{
  55. display: flex;
  56. flex-direction: column;
  57. font-size: 22px;
  58. margin: 10px 0;
  59. }
  60. .standardForm input{
  61. font-size: 22px;
  62. color: var(--gray);
  63. }
  64. .standardForm button{
  65. font-size: 26px;
  66. background: var(--accent);
  67. margin-top: 35px;
  68. padding: 10px 0;
  69. }