blob: 900c9ec83244adb1ca600b069a0cab5cba8aa74f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
.article {
height: 400px;
width: 100%;
background-position: center;
background-size: cover;
display: block;
margin: 5px;
}
.overlayart {
background-color: rgba(0, 0, 0, 0.568);
position: relative;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.art {
position: absolute;
bottom: 50px;
width: 100%;
}
.art h3 {
color: white;
padding: 0px 20px;
width: 100%;
}
.art p {
color: white;
padding: 0px 20px;
}
|