-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmark-test.html
60 lines (57 loc) · 1.91 KB
/
bookmark-test.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
59
60
<html>
<head>
<!-- Le styles -->
<link href="http://assets.visar.is/css/reports.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://assets.visar.is/js/lib/html5shiv.js"></script>
<![endif]-->
<style>
.breadcrumbs ol li { display: inline; }
.breadcrumbs ol li a { padding: 0 0.5em 0 0;}
.breadcrumbs ol li:before { content: " | "; }
.breadcrumbs { width: 100%; overflow: hidden; white-space: nowrap;}
.dimmer { display: none;}
@media (max-width: 570px) {
.dimmer { display: block;}
.breadcrumbs ol li { width: 25%; display: block; float: left; overflow: hidden; position: relative;}
.breadcrumbs .dimmer {
display: block;
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 30px;
background-image: linear-gradient(left , rgba(255,255,255,0) 0%, #fdfdfd 100%);
background-image: -o-linear-gradient(left , rgba(255,255,255,0) 0%, #fdfdfd 100%);
background-image: -moz-linear-gradient(left , rgba(255,255,255,0) 0%, #fdfdfd 100%);
background-image: -webkit-linear-gradient(left , rgba(255,255,255,0) 0%, #fdfdfd 100%);
background-image: -ms-linear-gradient(left , rgba(255,255,255,0) 0%, #fdfdfd 100%);
background-image: -webkit-gradient(
linear,
left bottom,
right bottom,
color-stop(0, rgba(255,255,255,0)),
color-stop(1, #fdfdfd)
);
}
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<div class="section">
<nav class="breadcrumbs">
<ol>
<li><a href="#">Home<div class="dimmer"></div></a></li>
<li><a href="#">Report Name<div class="dimmer"></div></a></li>
<li><a href="#">Question Name<div class="dimmer"></div></a></li>
<li>Item Breakdown<div class="dimmer"></div></li>
</ol>
</nav>
</div>
</div>
</div>
</body>
</html>