_blog.scss 811 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @import "variables";
  2. .posts-list {
  3. min-height: 50vh;
  4. h2 {
  5. font-family: $brand-font-face;
  6. font-size: 2em;
  7. font-weight: 400;
  8. }
  9. h5 {
  10. margin-top: -24px;
  11. }
  12. p {
  13. line-height: 1.4em;
  14. }
  15. }
  16. .blog-post {
  17. max-width: 800px;
  18. margin: auto;
  19. header {
  20. overflow: hidden;
  21. border-bottom: 1px dashed $gray-300;
  22. h1 {
  23. font-family: $brand-font-face;
  24. font-size: 3em;
  25. font-weight: 400;
  26. color: $brand-color;
  27. }
  28. .date-author {
  29. // font-size: 14px;
  30. color: $gray-700;
  31. }
  32. }
  33. .markdown > p:first-child {
  34. font-size: 22px;
  35. color: $gray-700;
  36. }
  37. figure {
  38. img {
  39. max-width: 100%;
  40. }
  41. }
  42. }