blob: 56c94ba0cb9ae05bc18900bbc0499b7b20a37320 (
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
33
34
35
|
body {
background-color: #a33;
}
main {
position: relative;
}
#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;
}
|