style.css 698 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .title {
  2. font-weight: bold;
  3. }
  4. .summary {
  5. /* font-style: italic; */
  6. font-family: 'Alegreya Sans', sans-serif;
  7. }
  8. .add {
  9. padding: 2em;
  10. background-color: rgb(218, 218, 218);
  11. }
  12. .link {
  13. text-decoration: none;
  14. font-size: 1.5em;
  15. padding-bottom: 1em;
  16. display: block;
  17. color: var(--main-color);
  18. font-weight: 600;
  19. font-family: 'Sanchez', serif;
  20. }
  21. a {
  22. text-decoration: none;
  23. }
  24. body {
  25. font-family: 'Alegreya Sans', sans-serif;
  26. font-size: 1.0em;
  27. }
  28. :root {
  29. --main-color: rgb(39, 39, 39);
  30. }
  31. nav {
  32. padding: calc(var(--nav-height)/3);
  33. text-align: right;
  34. /* line-height: var(--nav-height); */
  35. }