Angular Web App
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 line
432 B

  1. @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
  2. * {
  3. font-family: 'Roboto', sans-serif;
  4. margin: 0;
  5. box-sizing: border-box;
  6. padding: 0;
  7. text-decoration: none;
  8. outline: none;
  9. }
  10. :root {
  11. font-size: 62.5%;
  12. --primary: #6d654e;
  13. --secondary: #c4b57b;
  14. --highlight: #ea8f34;
  15. --teal: #1e8bbc;
  16. --dark-grey: #7a7a7a;
  17. --border-grey: #e8e8e8;
  18. }