-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (83 loc) · 3.58 KB
/
index.html
File metadata and controls
96 lines (83 loc) · 3.58 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="description" content="Hamcrest"/>
<meta name="keywords" content="hamcrest matchers junit testing"/>
<meta name="robots" content="index, follow"/>
<meta name="date" content="2012-08-17"/>
<title>Hamcrest</title>
<style>
@import url(http://fonts.googleapis.com/css?family=Cabin+Sketch);
@import url(http://fonts.googleapis.com/css?family=Alegreya);
body {
font-family: "Alegreya";
margin: 40px auto;
width: 700px;
}
.content {
position: relative;
}
footer {
padding: 2em 0 1em 0;
font-size: 12px;
}
h1 {
font-size: 96px;
margin-top: .3em;
margin-bottom: 0;
}
h1 + h2 {
margin-top: 0;
}
h2 {
font-weight: 400;
font-size: 28px;
}
h1, h2 {
font-family: "Cabin Sketch";
text-rendering: optimizeLegibility;
}
.content > p {
line-height: 1.5em;
text-rendering: optimizeLegibility;
}
.logo {
height: 80px;
padding-left: 0px;
padding-right: 40px;
}
</style>
</head>
<body>
<div class="content">
<h1><img class="logo" src="images/logo.jpg" title="hamcrest" alt="hamcrest surfer"></img>Hamcrest</h1>
<h2>Matchers that can be combined to create flexible expressions of intent</h2>
<p>Born in Java, Hamcrest now has implementations in a number of languages.</p>
<ul>
<li><a href="//github.com/hamcrest/JavaHamcrest">Java</a></li>
<li><a href="//github.com/hamcrest/PyHamcrest">Python</a></li>
<li><a href="//github.com/hamcrest/ramcrest">Ruby</a></li>
<li><a href="//github.com/hamcrest/OCHamcrest">Objective-C</a></li>
<li><a href="//github.com/hamcrest/hamcrest-php">PHP</a></li>
<li><a href="//github.com/40ants/cl-hamcrest">Common Lisp</a></li>
<li><a href="//github.com/hyperthunk/hamcrest-erlang">Erlang</a></li>
<li><a href="//github.com/nschum/SwiftHamcrest">Swift</a></li>
<li><a href="//github.com/carllerche/hamcrest-rust">Rust</a></li>
<li><a href="https://www.npmjs.com/package/jshamcrest">JavaScript (JsHamcrest)</a></li>
<li><a href="https://www.npmjs.com/package/hamjest">JavaScript (Hamjest)</a></li>
<li><a href="https://github.com/corbym/gocrest">GO (Gocrest)</a></li>
<li><a href="https://github.com/nhamcrest/NHamcrest">C# (NHamcrest)</a></li>
</ul>
<footer>
<span style="float:right;">
Released under the <a href="http://opensource.org/licenses/BSD-3-Clause">BSD License</a>.
</span>
Copyright 2012- <a href="http://hamcrest.org">hamcrest.org</a>
</footer>
</div>
<style>#forkongithub a{background:#000;color:#fff;text-decoration:none;font-family:arial,sans-serif;text-align:center;font-weight:bold;padding:5px 40px;font-size:1rem;line-height:2rem;position:relative;transition:0.5s;}#forkongithub a:hover{background:#c11;color:#fff;}#forkongithub a::before,#forkongithub a::after{content:"";width:100%;display:block;position:absolute;top:1px;left:0;height:1px;background:#fff;}#forkongithub a::after{bottom:1px;top:auto;}@media screen and (min-width:800px){#forkongithub{position:fixed;display:block;top:0;right:0;width:200px;overflow:hidden;height:200px;z-index:9999;}#forkongithub a{width:200px;position:absolute;top:60px;right:-60px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);box-shadow:4px 4px 10px rgba(0,0,0,0.8);}}</style>
<span id="forkongithub"><a href="https://github.com/hamcrest/">Fork me on GitHub</a></span>
</body>
</html>