custom.css 437 B

1234567891011121314151617181920212223242526
  1. .cover {
  2. -webkit-background-size: cover;
  3. -moz-background-size: cover;
  4. -o-background-size: cover;
  5. background-size: cover;
  6. background-position: center;
  7. background-repeat: no-repeat;
  8. background-color: grey;
  9. color: white;
  10. position: relative;
  11. }
  12. .cover .blog_title {
  13. position: absolute;
  14. text-align: center;
  15. top: -5%;
  16. left: 0;
  17. right: 0;
  18. }
  19. .cover_footer {
  20. min-height: 215px;
  21. height: 215px;
  22. cursor: pointer;
  23. }