React app
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

34 líneas
719 B

  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. :root {
  11. --orange: #f1be83;
  12. --red: #d47077;
  13. --blue: #668fe1;
  14. --dark-blue: #11253d;
  15. --teal: #4e9096;
  16. --black: #11253d;
  17. --brownish-black: #472020;
  18. --grey: #586471;
  19. --light-grey: #84919e;
  20. --lighter-grey: #d5e0ec;
  21. --creamy-white: #fef8ec;
  22. font-size: 62.5%;
  23. }
  24. .page {
  25. width: 100vw;
  26. height: 100vh;
  27. background-color: var(--creamy-white);
  28. overflow: auto;
  29. position: relative;
  30. padding-bottom: 100px;
  31. }