Skip to content

Commit 2fea0a6

Browse files
author
Christoph Schreiber
committed
Initial commit
1 parent 6d99433 commit 2fea0a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5771
-0
lines changed

.htaccess

Lines changed: 984 additions & 0 deletions
Large diffs are not rendered by default.

404.html

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Page Not Found</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<style>
8+
9+
* {
10+
line-height: 1.2;
11+
margin: 0;
12+
}
13+
14+
html {
15+
color: #888;
16+
display: table;
17+
font-family: sans-serif;
18+
height: 100%;
19+
text-align: center;
20+
width: 100%;
21+
}
22+
23+
body {
24+
display: table-cell;
25+
vertical-align: middle;
26+
margin: 2em auto;
27+
}
28+
29+
h1 {
30+
color: #555;
31+
font-size: 2em;
32+
font-weight: 400;
33+
}
34+
35+
p {
36+
margin: 0 auto;
37+
width: 280px;
38+
}
39+
40+
@media only screen and (max-width: 280px) {
41+
42+
body, p {
43+
width: 95%;
44+
}
45+
46+
h1 {
47+
font-size: 1.5em;
48+
margin: 0 0 0.3em;
49+
}
50+
51+
}
52+
53+
</style>
54+
</head>
55+
<body>
56+
<h1>Page Not Found</h1>
57+
<p>Sorry, but the page you were trying to view does not exist.</p>
58+
</body>
59+
</html>
60+
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "trianglify",
3+
"main": "dist/trianglify.min.js",
4+
"homepage": "https://github.com/qrohlf/trianglify",
5+
"authors": [
6+
"Quinn Rohlf <[email protected]>"
7+
],
8+
"description": "Trianglify is a javascript library for generating colorful triangle meshes that can be used as SVG images and CSS backgrounds.",
9+
"keywords": [
10+
"svg",
11+
"d3.js",
12+
"visualization"
13+
],
14+
"license": "GPLv3",
15+
"ignore": [
16+
"**/.*",
17+
"node_modules",
18+
"bower_components",
19+
"test"
20+
],
21+
"version": "1.0.0",
22+
"_release": "1.0.0",
23+
"_resolution": {
24+
"type": "version",
25+
"tag": "v1.0.0",
26+
"commit": "0fd81ca1069029996b9fb8c89cf40e8ab88aa342"
27+
},
28+
"_source": "https://github.com/qrohlf/trianglify.git",
29+
"_target": "^1.0.0",
30+
"_originalSource": "trianglify",
31+
"_direct": true
32+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Contributing Guidelines
2+
3+
Pull requests and issues are welcome! For all contributions, please:
4+
5+
1. Read the [Readme](Readme.md)
6+
2. Search the existing [issues](https://github.com/qrohlf/trianglify/issues?q=is%3Aissue+) and [pull requests](https://github.com/qrohlf/trianglify/pulls?q=is%3Apr) to make sure your contribution isn't a duplicate
7+
8+
## Issues
9+
10+
If you're submitting a bug, please include the browser(s) and browser version(s) that you have encountered the bug in.
11+
12+
## Pull Requests
13+
14+
1. Fork the repo on GitHub.
15+
2. Install dependencies with `npm install`
16+
2. Create a topic branch and make your changes.
17+
3. Run `gulp` to test your code and compile it to trianglify.min.js.
18+
4. Submit a pull request to merge your topic branch into `master`.

0 commit comments

Comments
 (0)