A website made for a class project to document an ecological issue resulting from human impact on the environment
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.

94 lines
1.5 KiB

  1. :root {
  2. --main-bg-color: #568ea3;
  3. --main-card-bg-color: #E96400;
  4. --main-highlight-color: #a40e4c;
  5. }
  6. ::selection {
  7. background: var(--main-highlight-color); /* WebKit/Blink Browsers */
  8. }
  9. ::-moz-selection {
  10. background: var(--main-highlight-color); /* Gecko Browsers */
  11. }
  12. * {
  13. box-sizing: border-box;
  14. }
  15. html {
  16. height: 100%;
  17. scroll-behavior: smooth;
  18. }
  19. body {
  20. margin: 0;
  21. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  22. height: 100%;
  23. background-color: var(--main-bg-color);
  24. }
  25. h1 {
  26. all: initial;
  27. }
  28. h1 {
  29. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  30. color: white;
  31. padding-right: 8px;
  32. font-size: 23.5px;
  33. }
  34. a {
  35. color: white;
  36. }
  37. a:hover {
  38. color: var(--main-highlight-color);
  39. }
  40. .Navbar {
  41. background-color: var(--main-card-bg-color);
  42. display: flex;
  43. padding: 16px;
  44. font-family: 'Roboto', sans-serif;
  45. color: white;
  46. }
  47. .Navbar__Link {
  48. padding-right: 8px;
  49. font-size: 18.5px;
  50. }
  51. .Navbar__Link-brand {
  52. padding-right: 8px;
  53. font-size: 18.5px;
  54. }
  55. .Navbar__Link a,
  56. h1 {
  57. color: white;
  58. }
  59. .Navbar__Link a:link {
  60. text-decoration: none;
  61. }
  62. .Navbar__Link a:visited {
  63. text-decoration: none;
  64. }
  65. .Navbar__Link a:hover {
  66. text-decoration: underline;
  67. }
  68. .Navbar__Link a:active {
  69. text-decoration: underline;
  70. }
  71. .Navbar__Items {
  72. display: flex;
  73. }
  74. .Navbar__Items--right {
  75. margin-left: auto;
  76. }