1234567891011121314151617181920212223242526 |
- .cover {
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
- background-color: grey;
- color: white;
- position: relative;
- }
- .cover .blog_title {
- position: absolute;
- text-align: center;
- top: -5%;
- left: 0;
- right: 0;
- }
- .cover_footer {
- min-height: 215px;
- height: 215px;
- cursor: pointer;
- }
|