Skip to content

Commit 16c35f0

Browse files
committed
Placeholder page
1 parent 71094e2 commit 16c35f0

File tree

2 files changed

+133
-0
lines changed

2 files changed

+133
-0
lines changed

index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!doctype html>
2+
<html>
3+
<meta charset="utf-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<link rel="stylesheet" href="style.css">
6+
<body>
7+
<h1>PyData Helsinki</h1>
8+
<p>
9+
A group of Python and data enthusiasts in Helsinki, Finland.
10+
</p>
11+
<ul>
12+
<!-- <li> <a href="https://www.meetup.com/pydata-helsinki/">Meetup</a></li> -->
13+
<li>Join us on <a href="https://discord.com/invite/FNvhyASZCx">the Helsinki Python Discord</a></li>
14+
</ul>
15+
<h2>Sponsors</h2>
16+
<ul>
17+
<li> We are always looking for sponsors who can provide us a venue and food and drinks for our meetup.
18+
In return, you can present your company or product at the meetup.
19+
</li>
20+
<li> The Meetup group is sponsored by <a href="https://numfocus.org/">NumFOCUS</a>: Promoting open code for better science.
21+
</li>
22+
</ul>
23+
<h2>Give a talk</h2>
24+
<p>
25+
Please contact us on the Discord server if you are interested in giving a talk.
26+
We are looking for talks at any level, from beginner to advanced.
27+
Suitable topics include data science, AI, Python, Julia, R, etc.
28+
</p>
29+
30+
<h2>Upcoming events</h2>
31+
<ul>
32+
<li> ca. June 2025 </li>
33+
</ul>
34+
<h2>Organisers</h2>
35+
<ul>
36+
<li>Niko Föhr</li>
37+
<li>Hugo van Kemenade</li>
38+
<li>Cal Paterson</li>
39+
<li>Jouni Seppänen</li>
40+
<li>Daniel Vahla</li>
41+
</ul>
42+
43+
<h2>About PyData</h2>
44+
<p>
45+
PyData is an educational program of NumFOCUS, a 501(c)3 non-profit organization in the United States. PyData provides a forum for the international community of users and developers of data analysis tools to share ideas and learn from each other. The global PyData network promotes discussion of best practices, new approaches, and emerging technologies for data management, processing, analytics, and visualization. PyData communities approach data science using many languages, including (but not limited to) Python, Julia, and R.
46+
</p>
47+
<p>
48+
The PyData Code of Conduct governs this meetup. To discuss any issues or concerns relating to the code of conduct or the behavior of anyone at a PyData meetup, please contact the local group organizers (message us on the meetup page). Please also submit a report of any potential Code of Conduct violation <a href="https://numfocus.typeform.com/to/ynjGdT">directly to NumFOCUS</a>. Thank you for helping us to maintain a welcoming and friendly PyData community!
49+
</p>
50+
51+
</body>
52+
</html>

style.css

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
:root {
2+
--primary-color: #398BAB;
3+
--secondary-color: #E87C32;
4+
--text-color: #333;
5+
--background-color: #f9f9f9;
6+
--max-width: 800px;
7+
--font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
8+
}
9+
10+
*, *::before, *::after { box-sizing: border-box; }
11+
* { margin: 0; }
12+
13+
body {
14+
line-height: 1.5;
15+
-webkit-font-smoothing: antialiased;
16+
}
17+
18+
img, picture, video, canvas, svg {
19+
display: block;
20+
max-width: 100%;
21+
}
22+
23+
body {
24+
font-family: var(--font-family);
25+
font-size: 1rem;
26+
color: var(--text-color);
27+
background-color: var(--background-color);
28+
padding: 2rem 1rem;
29+
max-width: var(--max-width);
30+
margin: 0 auto;
31+
}
32+
33+
h1, h2, h3, h4, h5, h6 {
34+
color: var(--primary-color);
35+
margin-top: 2rem;
36+
margin-bottom: 1rem;
37+
text-wrap: balance;
38+
overflow-wrap: break-word;
39+
}
40+
41+
h1 {
42+
font-size: 2.5rem;
43+
border-bottom: 3px solid var(--secondary-color);
44+
padding-bottom: 0.5rem;
45+
}
46+
47+
h2 {
48+
font-size: 1.8rem;
49+
}
50+
51+
p, ul {
52+
margin-bottom: 1.5rem;
53+
text-wrap: pretty;
54+
}
55+
56+
ul {
57+
padding-left: 2rem;
58+
}
59+
60+
li {
61+
margin-bottom: 0.5rem;
62+
}
63+
64+
a {
65+
color: var(--primary-color);
66+
text-decoration: none;
67+
}
68+
69+
a:hover {
70+
text-decoration: underline;
71+
}
72+
73+
@media (max-width: 600px) {
74+
h1 {
75+
font-size: 2rem;
76+
}
77+
78+
h2 {
79+
font-size: 1.5rem;
80+
}
81+
}

0 commit comments

Comments
 (0)