Skip to content

Commit 57c59c8

Browse files
committed
fix: new page
1 parent 8aab0e7 commit 57c59c8

9 files changed

Lines changed: 632 additions & 122 deletions

File tree

page/index.html

Lines changed: 242 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,245 @@
1-
<h2>Opensource Contributions Meetup #0</h2><p>In this meetup we will build teams to contribute to or create opensource software, you will get support in doing so</p><div><h3>Address</h3><p>Barfüsserplatz 6</p><p>Basel</p><p>4051</p><p>Switzerland</p><p>Level 4 - Optravis Headquarter</p></div><div><h3>Sponsor</h3><p>Optravic LLC</p><a href="http://optravis.com">http://optravis.com</a><p></p></div><div><h1>Opensource Contribution Meetup</h1>
1+
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><style>@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap");
2+
3+
* {
4+
margin: 0;
5+
padding: 0;
6+
box-sizing: border-box;
7+
}
8+
9+
body {
10+
background: #f4e8d8;
11+
font-family: "Merriweather", serif;
12+
color: #2b1810;
13+
padding: 20px;
14+
background-image: repeating-linear-gradient(
15+
0deg,
16+
transparent,
17+
transparent 2px,
18+
rgba(139, 69, 19, 0.03) 2px,
19+
rgba(139, 69, 19, 0.03) 4px
20+
);
21+
line-height: 1.8;
22+
}
23+
24+
body::before {
25+
content: "";
26+
position: fixed;
27+
top: 0;
28+
left: 0;
29+
right: 0;
30+
height: 8px;
31+
background: linear-gradient(90deg, #8b4513, #c85a28, #8b4513);
32+
z-index: 1000;
33+
}
34+
35+
body > * {
36+
max-width: 1200px;
37+
margin: 0 auto;
38+
background: #faf6f0;
39+
padding: 40px;
40+
box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
41+
border: 3px solid #8b4513;
42+
}
43+
44+
h1 {
45+
font-family: "Playfair Display", serif;
46+
font-size: 3.5em;
47+
font-weight: 900;
48+
color: #8b4513;
49+
text-align: center;
50+
text-transform: uppercase;
51+
letter-spacing: 4px;
52+
margin-bottom: 15px;
53+
padding: 30px 20px 20px;
54+
border-top: 4px solid #c85a28;
55+
border-bottom: 4px solid #c85a28;
56+
background: linear-gradient(180deg, #faf6f0 0%, #f4e8d8 100%);
57+
text-shadow: 2px 2px 0px rgba(200, 90, 40, 0.3);
58+
}
59+
60+
h2 {
61+
font-family: "Playfair Display", serif;
62+
font-size: 2.2em;
63+
font-weight: 700;
64+
color: #2b1810;
65+
margin: 40px 0 15px;
66+
line-height: 1.2;
67+
border-bottom: 2px solid #c85a28;
68+
padding-bottom: 10px;
69+
}
70+
71+
h3 {
72+
font-family: "Playfair Display", serif;
73+
font-size: 1.6em;
74+
font-weight: 700;
75+
color: #5d4037;
76+
margin: 30px 0 12px;
77+
}
78+
79+
h4 {
80+
font-family: "Playfair Display", serif;
81+
font-size: 1.3em;
82+
font-weight: 700;
83+
color: #8b4513;
84+
margin: 25px 0 10px;
85+
}
86+
87+
h5,
88+
h6 {
89+
font-family: "Playfair Display", serif;
90+
font-size: 1.1em;
91+
font-weight: 700;
92+
color: #5d4037;
93+
margin: 20px 0 8px;
94+
}
95+
96+
p {
97+
margin-bottom: 18px;
98+
text-align: justify;
99+
color: #3e2723;
100+
}
101+
102+
h2 + p {
103+
font-size: 1.1em;
104+
font-style: italic;
105+
color: #5d4037;
106+
margin-bottom: 20px;
107+
text-align: left;
108+
}
109+
110+
/* Links */
111+
a {
112+
color: #c85a28;
113+
text-decoration: underline;
114+
transition: color 0.2s;
115+
}
116+
117+
a:hover {
118+
color: #8b4513;
119+
}
120+
121+
ul,
122+
ol {
123+
margin: 20px 0 20px 40px;
124+
}
125+
126+
li {
127+
margin-bottom: 10px;
128+
padding-left: 5px;
129+
}
130+
131+
ul li {
132+
list-style-type: none;
133+
position: relative;
134+
}
135+
136+
ul li::before {
137+
content: "⚙";
138+
position: absolute;
139+
left: -25px;
140+
color: #c85a28;
141+
font-size: 0.9em;
142+
}
143+
144+
blockquote {
145+
margin: 25px 0;
146+
padding: 20px 30px;
147+
border-left: 5px solid #c85a28;
148+
background: #f4e8d8;
149+
font-style: italic;
150+
color: #5d4037;
151+
}
152+
153+
blockquote p {
154+
margin-bottom: 10px;
155+
}
156+
157+
/* Code blocks */
158+
pre {
159+
background: #2b2b2b;
160+
color: #ce9178;
161+
padding: 20px;
162+
margin: 20px 0;
163+
border-left: 5px solid #c85a28;
164+
overflow-x: auto;
165+
font-family: "Courier New", monospace;
166+
font-size: 0.9em;
167+
line-height: 1.5;
168+
}
169+
170+
code {
171+
background: #f4e8d8;
172+
color: #c85a28;
173+
padding: 2px 6px;
174+
border-radius: 3px;
175+
font-family: "Courier New", monospace;
176+
font-size: 0.9em;
177+
}
178+
179+
pre code {
180+
background: transparent;
181+
color: inherit;
182+
padding: 0;
183+
}
184+
185+
hr {
186+
border: none;
187+
border-top: 3px dotted #c85a28;
188+
margin: 30px 0;
189+
}
190+
191+
table {
192+
width: 100%;
193+
margin: 25px 0;
194+
border-collapse: collapse;
195+
background: #faf6f0;
196+
}
197+
198+
th {
199+
background: #8b4513;
200+
color: #faf6f0;
201+
padding: 12px;
202+
text-align: left;
203+
font-family: "Playfair Display", serif;
204+
font-weight: 700;
205+
border: 2px solid #c85a28;
206+
}
207+
208+
td {
209+
padding: 10px 12px;
210+
border: 1px solid #c85a28;
211+
}
212+
213+
tr:nth-child(even) {
214+
background: #f4e8d8;
215+
}
216+
217+
img {
218+
max-width: 100%;
219+
height: auto;
220+
display: block;
221+
margin: 25px auto;
222+
border: 3px solid #8b4513;
223+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
224+
}
225+
226+
/* Strong and emphasis */
227+
strong,
228+
b {
229+
color: #8b4513;
230+
font-weight: 700;
231+
}
232+
233+
em,
234+
i {
235+
color: #5d4037;
236+
}
237+
238+
small {
239+
color: #5d4037;
240+
font-size: 0.85em;
241+
}
242+
</style></head><title>Rust Basel Meetups</title><h2>Opensource Contributions Meetup #0</h2><p>In this meetup we will build teams to contribute to or create opensource software, you will get support in doing so</p><div><h3>Address</h3><p>Barfüsserplatz 6</p><p>Basel</p><p>4051</p><p>Switzerland</p><p>Level 4 - Optravis Headquarter</p></div><div><h3>Sponsor</h3><p>Optravic LLC</p><a href="http://optravis.com">http://optravis.com</a><p></p></div><div><h1>Opensource Contribution Meetup</h1>
2243
<p>Welcome to the first Rust Basel meetup focused on open source contributions!</p>
3244
<h3>Teambuilding</h3>
4245
<p>Build a team of two or three people.

public/meetups/opensource_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Opensource Contribution Meetup
1+
## Opensource Contribution Meetup
22

33
Welcome to the first Rust Basel meetup focused on open source contributions!
44

0 commit comments

Comments
 (0)