_blog.scss 748 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .blogContainer {
  2. .posts {
  3. margin-top: 60px;
  4. .post {
  5. border: 1px solid $primary-bg;
  6. border-radius: 3px;
  7. padding: 10px 20px 20px;
  8. }
  9. }
  10. .lonePost {
  11. margin-top: 60px;
  12. .post {
  13. padding: 10px 0px 0px;
  14. }
  15. }
  16. .post-header {
  17. h1 {
  18. text-align: center;
  19. }
  20. .post-authorName {
  21. color: rgba($text, 0.7);
  22. font-size: 14px;
  23. font-weight: 900;
  24. margin-top: 0;
  25. padding: 0;
  26. text-align: center;
  27. }
  28. .authorPhoto {
  29. border-radius: 50%;
  30. height: 50px;
  31. left: 50%;
  32. margin-left: auto;
  33. margin-right: auto;
  34. display: inline-block;
  35. overflow: hidden;
  36. position: static;
  37. top: -25px;
  38. width: 50px;
  39. }
  40. }
  41. }