Skip to content

Commit 0b11a7c

Browse files
committed
Project init
0 parents  commit 0b11a7c

16 files changed

+576
-0
lines changed

.gitignore

+191
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
# Created by https://www.gitignore.io/api/python,pycharm,linux,osx
2+
3+
### Linux ###
4+
*~
5+
6+
# temporary files which can be created if a process still has a handle open of a deleted file
7+
.fuse_hidden*
8+
9+
# KDE directory preferences
10+
.directory
11+
12+
# Linux trash folder which might appear on any partition or disk
13+
.Trash-*
14+
15+
# .nfs files are created when an open file is removed but is still being accessed
16+
.nfs*
17+
18+
### OSX ###
19+
*.DS_Store
20+
.AppleDouble
21+
.LSOverride
22+
23+
# Icon must end with two \r
24+
Icon
25+
26+
27+
# Thumbnails
28+
._*
29+
30+
# Files that might appear in the root of a volume
31+
.DocumentRevisions-V100
32+
.fseventsd
33+
.Spotlight-V100
34+
.TemporaryItems
35+
.Trashes
36+
.VolumeIcon.icns
37+
.com.apple.timemachine.donotpresent
38+
39+
# Directories potentially created on remote AFP share
40+
.AppleDB
41+
.AppleDesktop
42+
Network Trash Folder
43+
Temporary Items
44+
.apdisk
45+
46+
### PyCharm ###
47+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
48+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
49+
50+
# User-specific stuff:
51+
.idea/**/workspace.xml
52+
.idea/**/tasks.xml
53+
54+
# Sensitive or high-churn files:
55+
.idea/**/dataSources/
56+
.idea/**/dataSources.ids
57+
.idea/**/dataSources.xml
58+
.idea/**/dataSources.local.xml
59+
.idea/**/sqlDataSources.xml
60+
.idea/**/dynamic.xml
61+
.idea/**/uiDesigner.xml
62+
63+
# Gradle:
64+
.idea/**/gradle.xml
65+
.idea/**/libraries
66+
67+
# Mongo Explorer plugin:
68+
.idea/**/mongoSettings.xml
69+
70+
## File-based project format:
71+
*.iws
72+
73+
## Plugin-specific files:
74+
75+
# IntelliJ
76+
/out/
77+
78+
# mpeltonen/sbt-idea plugin
79+
.idea_modules/
80+
81+
# JIRA plugin
82+
atlassian-ide-plugin.xml
83+
84+
# Crashlytics plugin (for Android Studio and IntelliJ)
85+
com_crashlytics_export_strings.xml
86+
crashlytics.properties
87+
crashlytics-build.properties
88+
fabric.properties
89+
90+
### PyCharm Patch ###
91+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
92+
93+
# *.iml
94+
# modules.xml
95+
# .idea/misc.xml
96+
# *.ipr
97+
98+
### Python ###
99+
# Byte-compiled / optimized / DLL files
100+
__pycache__/
101+
*.py[cod]
102+
*$py.class
103+
104+
# C extensions
105+
*.so
106+
107+
# Distribution / packaging
108+
.Python
109+
env/
110+
build/
111+
develop-eggs/
112+
dist/
113+
downloads/
114+
eggs/
115+
.eggs/
116+
lib/
117+
lib64/
118+
parts/
119+
sdist/
120+
var/
121+
wheels/
122+
*.egg-info/
123+
.installed.cfg
124+
*.egg
125+
126+
# PyInstaller
127+
# Usually these files are written by a python script from a template
128+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
129+
*.manifest
130+
*.spec
131+
132+
# Installer logs
133+
pip-log.txt
134+
pip-delete-this-directory.txt
135+
136+
# Unit test / coverage reports
137+
htmlcov/
138+
.tox/
139+
.coverage
140+
.coverage.*
141+
.cache
142+
nosetests.xml
143+
coverage.xml
144+
*,cover
145+
.hypothesis/
146+
147+
# Translations
148+
*.mo
149+
*.pot
150+
151+
# Django stuff:
152+
*.log
153+
local_settings.py
154+
155+
# Flask stuff:
156+
instance/
157+
.webassets-cache
158+
159+
# Scrapy stuff:
160+
.scrapy
161+
162+
# Sphinx documentation
163+
docs/_build/
164+
165+
# PyBuilder
166+
target/
167+
168+
# Jupyter Notebook
169+
.ipynb_checkpoints
170+
171+
# pyenv
172+
.python-version
173+
174+
# celery beat schedule file
175+
celerybeat-schedule
176+
177+
# dotenv
178+
.env
179+
180+
# virtualenv
181+
.venv
182+
venv/
183+
ENV/
184+
185+
# Spyder project settings
186+
.spyderproject
187+
188+
# Rope project settings
189+
.ropeproject
190+
191+
# End of https://www.gitignore.io/api/python,pycharm,linux,osx

.static

Whitespace-only changes.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016-2017 Pythonity
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Pythonity website
2+
Simple one page website that tells you all about Pythonity. No fancy scrolling
3+
or animations because we're usually annoyed by them. Sorry, not sorry.
4+
5+
Last seen at [pythonity.com][pythonity]
6+
7+
## Authors
8+
Hammered and duct-taped together by [Michał Wojciechowski][odyniec] and
9+
[Paweł Adamczak][pawelad].
10+
11+
Released under [MIT License][license].
12+
13+
14+
[license]: https://github.com/Pythonity/pythonity-website/blob/master/LICENSE
15+
[odyniec]: https://github.com/odyniec
16+
[pawelad]: https://github.com/pawelad
17+
[pythonity]: http://pythonity.com

css/styles.css

+164
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
/* Base */
2+
html {
3+
position: relative;
4+
min-height: 100%;
5+
}
6+
7+
body {
8+
font-family: Dosis, sans-serif;
9+
border-top: solid 10px #0991cc;
10+
11+
/* Margin bottom by footer height */
12+
margin-bottom: 60px;
13+
}
14+
15+
a {
16+
font-weight: bold;
17+
}
18+
19+
a .fa {
20+
color: #455A64;
21+
}
22+
23+
a .fa:hover {
24+
color: #37474F;
25+
transition: all 0.2s;
26+
}
27+
28+
29+
/* Header */
30+
h1 {
31+
margin: 40px;
32+
text-align: center;
33+
}
34+
35+
36+
/* Lead and inverted lead strips */
37+
.strip {
38+
padding: 25px 0;
39+
margin: 25px 0;
40+
font-size: 32px;
41+
color: #626262;
42+
text-align: center;
43+
background: #eede2c;
44+
}
45+
46+
.strip.inverted {
47+
color: #f6f6f6;
48+
background: #0991cc;
49+
}
50+
51+
.strip.inverted small {
52+
font-size: 50%;
53+
}
54+
55+
56+
/* Boxes */
57+
/* Based on: http://bootsnipp.com/snippets/featured/box-material-design */
58+
.box {
59+
display: block;
60+
padding: 10px 25px;
61+
background: #f2f2f2;
62+
border-radius: 3px;
63+
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
64+
}
65+
66+
.row:nth-child(even) .box {
67+
margin-top: 50px;
68+
}
69+
70+
/* Used at the moment */
71+
/*.box-icon {
72+
display: table;
73+
height: 100px;
74+
width: 100px;
75+
margin: -61px auto 0;
76+
background-color: #0991cc;
77+
border-radius: 50%;
78+
}
79+
80+
.box-icon span {
81+
display: table-cell;
82+
color: #ffffff;
83+
text-align: center;
84+
vertical-align: middle;
85+
}*/
86+
87+
.box-info p.lead {
88+
font-size: 20px;
89+
}
90+
91+
92+
/* Footer */
93+
footer {
94+
/* Sticky footer */
95+
position: absolute;
96+
bottom: 0;
97+
width: 100%;
98+
height: 60px;
99+
100+
font-size: 16px;
101+
color: #999999;
102+
background: #f2f2f2;
103+
border-bottom: solid 10px #eede2c;
104+
box-sizing: content-box;
105+
}
106+
107+
footer p {
108+
padding: 0.8em;
109+
margin: 0;
110+
}
111+
112+
113+
/* Guess who? */
114+
#guess-who {
115+
color: #f2f2f2;
116+
}
117+
118+
#guess-who:active,
119+
#guess-who:hover {
120+
color: #999;
121+
}
122+
123+
#guess-who:before {
124+
position: absolute;
125+
display: auto;
126+
color: #999;
127+
content: "guess who?";
128+
}
129+
130+
#guess-who:active:before,
131+
#guess-who:hover:before {
132+
display: none;
133+
}
134+
135+
#guess-who:active:after,
136+
#guess-who:hover:after {
137+
position: absolute;
138+
font-size: 80%;
139+
content: "\0000a0(duh)";
140+
}
141+
142+
/* Extra Small Devices, Phones */
143+
@media only screen and (max-width : 480px) {
144+
h1 {
145+
margin: 20px;
146+
}
147+
148+
.strip {
149+
font-size: 24px;
150+
}
151+
152+
.box-info h3 {
153+
margin-top: 10px;
154+
font-size: 30px;
155+
}
156+
157+
.box-info p.lead {
158+
font-size: 16px;
159+
}
160+
161+
footer {
162+
font-size: 14px;
163+
}
164+
}

favicon.ico

5.3 KB
Binary file not shown.

img/apple-touch-icon-144x144.png

14.1 KB
Loading

img/apple-touch-icon-152x152.png

15.4 KB
Loading

img/favicon-16x16.png

586 Bytes
Loading

img/favicon-32x32.png

1.12 KB
Loading

img/logo.png

28.2 KB
Loading

img/logo_shadow.png

10.2 KB
Loading

img/logo_text.png

16.1 KB
Loading

img/mstile-144x144.png

14.1 KB
Loading
208 KB
Loading

0 commit comments

Comments
 (0)