This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
99 lines (82 loc) · 1.63 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<!--
chevronbar/index.html
2012 Tom Slankard <twslankard@gmail.com>
public domain license
-->
<head>
<style type="text/css">
body {
margin: 0;
padding: 5em;
}
ul.chevronbar {
list-style-type: none;
margin: 0;
padding: 0;
}
ul.chevronbar li {
vertical-align: top;
position: relative;
background: #333;
color: #fff;
display: inline;
border: none;
padding-top: 0.420em;
padding-bottom: 0.420em;
font-size: 1.5em;
line-height: 1em;
margin-right: 1em;
padding-right: 0.7em;
}
ul.chevronbar li a {
text-decoration: none;
padding: 0.5em;
color: #fff;
}
ul.chevronbar li:before,
ul.chevronbar li:after {
vertical-align: top;
content: ' ';
height: 0;
position: absolute;
width: 0;
border: 1.0em solid transparent;
border-left-width: 0.5em;
border-right-width: 0.5em;
top: 50%;
margin-top: -1.0em;
}
ul.chevronbar li:before {
border-top-color: #333;
border-bottom-color: #333;
border-right-color: #333;
right: 100%;
}
ul.chevronbar li:after {
border-left-color: #333;
left: 100%;
margin-left: -0.01em;
}
li.first {
padding-left: 0.5em;
}
li.first:before {
border: none !important ;
}
li.last:after {
border: none !important;
}
</style>
</head>
<body>
<ul class="chevronbar">
<li class="first"><a href="http://example.com">Foo</a></li>
<li><a href="http://example.com">Bar</a></li>
<li><a href="http://example.com">Baz</a></li>
<li><a href="http://example.com">Bartledoo</a></li>
<li><a href="http://example.com">Erhmagerd</a></li>
<li><a href="http://example.com">Shoop Da Woop</a></li>
<li class="last"><a href="http://example.com">Harbl</a></li>
</ul>
</body>