-
Notifications
You must be signed in to change notification settings - Fork 3
/
3-cards-data-current
55 lines (51 loc) · 1.68 KB
/
3-cards-data-current
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
<!--The sample code uses three center-aligned cards to highlight downloadable data. The cards will contain a hyperlinked title text, short description and one button linking to data on Open Data DC.-->
<!--all cards begin here. edit CAPS text with your content.-->
<ul class="cards-list">
<!--first card begins here.-->
<li class="col-sm-12 col-md-4">
<div class="calcite-web">
<div class="card-base card-bar-blue-darl">
<div class="card-content">
<h4>DATASET TITLE</h4>
<!--use the same character/word counts for each card summary for best alignment.-->
<p>BRIEF SUMMARY</p>
<!--button for data download-->
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Show Me Data</a>
</div>
</div>
</div>
</div>
</li>
<!--second card begins here.-->
<li class="col-sm-12 col-md-4">
<div class="calcite-web">
<div class="card-base card-bar-blue-darl">
<div class="card-content">
<h4>DATASET TITLE</h4>
<!--use the same character/word counts for each card summary for best alignment.-->
<p>BRIEF SUMMARY</p>
<!--button for data download-->
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Show Me Data</a>
</div>
</div>
</div>
</div>
</li>
<!--third card begins here.-->
<li class="col-sm-12 col-md-4">
<div class="calcite-web">
<div class="card-base card-bar-blue-darl">
<div class="card-content">
<h4>DATASET TITLE</h4>
<p>BRIEF SUMMARY</p>
<!--button for data download-->
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Show Me Data</a>
</div>
</div>
</div>
</div>
</li>
</ul>