-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.svelte
216 lines (189 loc) · 4.28 KB
/
index.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<style>
:global(body) {
background-color: black;
-webkit-tap-highlight-color: transparent;
}
.section-header {
height: 90vh;
}
.logo-container {
text-align: center;
margin: 2em 0 0 0;
width: 800px;
height: 300px;
font-size: 2rem;
position: relative;
}
.logo-front {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
img {
width: 100%;
max-width: 600px;
margin: 0 0 1em 0;
}
.section-about {
height: 100vh;
}
.about-us {
width: 100%;
font-size: 1.1rem;
display: inline-block;
margin-top: 5vh;
}
.about-us > p {
line-height: 1.9;
word-spacing: 4px;
}
.about-us > h2 {
color: #fff;
font-weight: 700;
margin: 5px;
}
.divider {
height: 3px;
width: 160px;
background-color: orange;
}
a {
outline: none;
}
#social {
margin-top: 90px;
display: flex;
flex-direction: row;
flex-grow: 0;
justify-content: center;
width: 100%;
justify-content: space-around;
}
a {
font-size: 1.3rem;
/* 1.1 * 16px */
text-decoration: none;
color: #aaa;
margin: 10px 0;
transition: all 0.3s;
-webkit-tap-highlight-color: transparent;
}
a:hover {
color: white;
}
@media (min-width: 769px) {
.logo-container {
max-width: 800px;
width: 100%;
}
}
@media (max-width: 768px) {
.section-header {
height: 87vh;
position: relative;
}
.logo-container {
display: inline-block;
max-width: 300px;
width: 100%;
height: 160px;
left: 50%;
top: 17%;
transform: translate(-50%, -50%);
}
.logo-front > p {
font-size: 1.1rem;
}
#social {
position: absolute;
bottom: 25%;
display: grid;
grid-template-columns: auto auto;
}
#social > a {
font-size: 1.1rem;
}
.section-about {
height: 100vh;
}
.about-us {
width: 100%;
font-size: 1rem;
display: inline-block;
margin-top: 15vh;
}
.about-us > p {
line-height: 1.5;
word-spacing: 2px;
}
.divider {
width: 130px;
}
p {
font-size: 18px;
}
}
</style>
<script>
import Icon from 'svelte-awesome/components/Icon.svelte';
import { telegram, twitter, facebook, github } from 'svelte-awesome/icons';
import { faDiscord } from '@fortawesome/free-brands-svg-icons';
</script>
<svelte:head>
<title>JODC | JIIT Open-Source Developers Circle</title>
</svelte:head>
<section class="section-header">
<div class="logo-container">
<div class="logo-front">
<img alt="JODC Logo" src="jodcLogoWB.svg" />
<p>JIIT Open-Source Developers Circle</p>
</div>
</div>
<div id="social">
<a href="https://github.com/jiitodc">
<Icon style="margin-right: 10px; scale:1.5;" data="{github}" />GITHUB</a>
<a href="https://t.me/jiitodc">
<Icon
style="margin-right: 10px; scale:1.5;"
data="{telegram}"
/>TELEGRAM</a>
<a href="https://discord.gg/TC3DymJ">
<Icon
style="margin-right: 10px; scale:1.5;"
data="{faDiscord}"
/>DISCORD</a>
<a href="https://twitter.com/jiitodc">
<Icon
style="margin-right: 10px; scale:1.5;"
data="{twitter}"
/>TWITTER</a>
<a href="https://www.facebook.com/groups/jiitodc">
<Icon
style="margin-right: 10px; scale:1.5;"
data="{facebook}"
/>FACEBOOK</a>
</div>
</section>
<section class="section-about">
<div class="about-us">
<h2>ABOUT US</h2>
<div class="divider"></div>
<p>
According to GitHub’s “State of the Octoverse” report 2019, 99% of
software projects in the world use Open Source Technologies in some way or
the other. Open source has undoubtably changed the world, and we, the JODC
(JIIT Open-Source Developers Circle) aim to help students to become a part
of it.<br /><br />The JODC is an initiative by the students of JIIT-128 to
promote open source culture. The hub is all about contributing to and
collaborating on projects, networking, learning together and guiding
students. We conduct talks, workshops, activities, one-to-one sessions and
dev-sprints to mentor students.<br /><br />
We encourage them to volunteer for open source projects and organisations
and participate in open source initiatives such as Google Summer of Code
and Outreachy to become better developers and for the betterment of open
source.
</p>
</div>
</section>