blob: a4e24cf908b29af2f1d123e02ee58cfd06385d91 (
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
|
main {
position: relative;
background: #a33;
}
#next-concert {
position: absolute;
bottom: 4%;
height: 20ex;
width: 10em;
text-align: center;
background: no-repeat center/contain url('calendar.svg');
}
#next-concert a {
display: inline-block;
width: 100%;
height: 100%;
text-decoration: none;
}
#next-concert p {
position: relative;
top: 48%;
margin: 0;
color: #eee;
}
#next-concert #day {
font-size: 180%;
font-weight: bold;
}
|