_layout-home.scss 436 B

1234567891011121314151617181920
  1. .home-box {
  2. padding:0;
  3. overflow:hidden;
  4. .post-link {
  5. color: inherit;
  6. display:block;
  7. padding: $spacing-unit;
  8. transition: .3s background-color;
  9. &:not(:last-child) {
  10. border-bottom:1px solid $header-color;
  11. }
  12. &:hover {
  13. text-decoration: none;
  14. background-color: $header-color;
  15. }
  16. h3 {
  17. margin:0;
  18. }
  19. }
  20. }