_blog.scss 831 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. padding: 0 6px;
  20. header {
  21. overflow: hidden;
  22. border-bottom: 1px dashed $gray-300;
  23. h1 {
  24. font-family: $brand-font-face;
  25. font-size: 3em;
  26. font-weight: 400;
  27. color: $brand-color;
  28. }
  29. .date-author {
  30. // font-size: 14px;
  31. color: $gray-700;
  32. }
  33. }
  34. .markdown > p:first-child {
  35. font-size: 22px;
  36. color: $gray-700;
  37. }
  38. figure {
  39. img {
  40. max-width: 100%;
  41. }
  42. }
  43. }