style.css 660 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. }
  20. a {
  21. text-decoration: none;
  22. }
  23. body {
  24. font-family: 'Alegreya Sans', sans-serif;
  25. font-size: 1.0em;
  26. }
  27. :root {
  28. --main-color: #f7d723;
  29. }
  30. nav {
  31. padding: calc(var(--nav-height)/3);
  32. text-align: right;
  33. /* line-height: var(--nav-height); */
  34. }