-
Notifications
You must be signed in to change notification settings - Fork 0
/
blurb.html
59 lines (46 loc) · 1.38 KB
/
blurb.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{% block content %}
<style type="text/css">
.graphic-wrapper{
position:relative;
max-width: 580px;
margin:0 auto;
}
.asset-button{
position:absolute;
top:45%;
right:0;
font-family:'Arial', sans-serif;
font-size: 16px;
line-height:1.3em;
text-align:center;
text-decoration: none;
display:block;
width:100px;
background:#004E87;
color:white;
padding:10px;
}
.asset-button span{
display:block;
font-size:14px;
}
.asset-button.asset-button--mobile{display:none;}
#g-chicago-area-bridge-ratings-mobile{display:none;}
@media all and (max-width:579px){
.graphic-wrapper{ max-width: 280px; }
.asset-button{display:none;}
.asset-button.asset-button--mobile{
display:block;
font-size:14px;
width:75px;
}
#g-chicago-area-bridge-ratings-mobile{display:block;}
#g-chicago-area-bridge-ratings-desktop{display:none;}
}
</style>
<div class='graphic-wrapper'>
{% include 'ai/ai2html-output/chicago-area-bridge-ratings.html'%}
<a class='asset-button' href='{{ asset_link_url }}' target="_blank">{{ asset_link_text|process_text }}</a>
<a class='asset-button asset-button--mobile' href='{{ asset_link_url }}' target="_blank">{{ asset_link_text_mobile|process_text }}</a>
</div>
{% endblock content %}