React app
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

60 lines
1.1 KiB

  1. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
  2. * {
  3. box-sizing: border-box;
  4. margin: 0;
  5. padding: 0;
  6. text-decoration: none;
  7. outline: none;
  8. font-family: 'Poppins', sans-serif;
  9. }
  10. h1, h2, h3, h4, h5, h6 {
  11. font-weight: 600;
  12. }
  13. :root {
  14. --orange: #f1be83;
  15. --red: #d47077;
  16. --blue: #668fe1;
  17. --dark-blue: #11253d;
  18. --teal: #4e9096;
  19. --black: #11253d;
  20. --brownish-black: #472020;
  21. --grey: #586471;
  22. --light-grey: #84919e;
  23. --lighter-grey: #d5e0ec;
  24. --creamy-white: #fef8ec;
  25. --form-input-bg: #efe6d6;
  26. font-size: 62.5%;
  27. }
  28. .page {
  29. width: 100vw;
  30. height: 100vh;
  31. background-color: var(--creamy-white);
  32. overflow: auto;
  33. position: relative;
  34. padding-bottom: 100px;
  35. }
  36. .modalPage {
  37. background-color: var(--creamy-white);
  38. z-index: 2;
  39. width: 100vw;
  40. height: 100vh;
  41. overflow: auto;
  42. opacity: 0;
  43. position: relative;
  44. animation: fadeUp 0.3s forwards;
  45. }
  46. @keyframes fadeUp {
  47. 0% {
  48. opacity: 0;
  49. transform: translateY(10vh);
  50. } 100% {
  51. opacity: 1;
  52. transform: translateY(0vh);
  53. }
  54. }