Skip to content

Commit 3c8817a

Browse files
committedJun 8, 2017
PH cut out
1 parent 6f8c803 commit 3c8817a

File tree

79 files changed

+18355
-0
lines changed

Some content is hidden

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

79 files changed

+18355
-0
lines changed
 

‎LICENSE.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
Dual Licensed: CC-BY or MIT
2+
3+
License exceptions!
4+
-------------------
5+
6+
Note! Some images and documents might not be licensed under below free licenses.
7+
8+
Specfically:
9+
* `.info/` -- documents gathered here are mostly from outside sources. You should assume this documents cannot be used freely.
10+
* `images/` -- all non-standard images are copyrighted. Assume everything except `logo.png` and `icons.svg` cannot be used freely.
11+
12+
CC-BY
13+
-----
14+
15+
### EN ###
16+
17+
http://creativecommons.org/licenses/by/4.0/
18+
19+
Attribution (BY) — You must give appropriate credit, provide a link to the license,
20+
and indicate if changes were made. You may do so in any reasonable manner,
21+
but not in any way that suggests the licensor endorses you or your use.
22+
23+
### PL ###
24+
25+
http://creativecommons.org/licenses/by/4.0/deed.pl
26+
27+
Uznanie autorstwa (BY) — Należy odpowiednio oznaczyć autorstwo utworu, podać odnośnik
28+
do licencji i wskazać zmiany, jeśli takie zostały dokonane. Można tego dokonać
29+
w dowolny rozsądny sposób, o ile nie sugeruje się udzielenia przez licencjodawcę
30+
aprobaty dla siebie lub swojego sposobu wykorzystania licencjonowanego utworu.
31+
32+
33+
The MIT License (MIT)
34+
---------------------
35+
36+
Copyright (c) 2014-2017 Nux
37+
38+
Permission is hereby granted, free of charge, to any person obtaining a copy of
39+
this software and associated documentation files (the "Software"), to deal in
40+
the Software without restriction, including without limitation the rights to
41+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
42+
the Software, and to permit persons to whom the Software is furnished to do so,
43+
subject to the following conditions:
44+
45+
The above copyright notice and this permission notice shall be included in all
46+
copies or substantial portions of the Software.
47+
48+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
50+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
51+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
52+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
53+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

‎css/colors.css

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/*
2+
Colors.
3+
4+
Gradients editor:
5+
http://www.colorzilla.com/gradient-editor/
6+
*/
7+
8+
html
9+
{
10+
background-color: #eef;
11+
}
12+
13+
/* content */
14+
#container #content
15+
{
16+
background-color:white;
17+
}
18+
19+
/* header & footer */
20+
#header
21+
{
22+
border-bottom: 1px solid #ddd;
23+
background-color:#fefcea;
24+
}
25+
#header a
26+
{
27+
color: #333;
28+
}
29+
#footer
30+
{
31+
border-top: 1px solid #eee;
32+
color: #333;
33+
background-color: whitesmoke;
34+
}
35+
36+
/* menu */
37+
#menu a
38+
{
39+
color:black;
40+
}
41+
#menu a:hover
42+
{
43+
color:#903;
44+
}
45+
body
46+
{
47+
background-color:whitesmoke;
48+
}
49+
50+
/* ticks */
51+
#footer #ticks
52+
{
53+
color: #9a9;
54+
}
55+
56+
/* tables */
57+
#content table
58+
,#content table td
59+
,#content table th
60+
{
61+
border:1px solid #336;
62+
}
63+
#content table
64+
{
65+
background-color:#fff;
66+
}
67+
#content table th
68+
{
69+
background-color:#ecf4ff;
70+
}

0 commit comments

Comments
 (0)