1
1
<script >
2
2
import Icon from ' svelte-awesome/components/Icon.svelte' ;
3
- import {telegram , twitter , facebook , github } from ' svelte-awesome/icons' ;
3
+ import { telegram , twitter , facebook , github } from ' svelte-awesome/icons' ;
4
4
</script >
5
5
6
6
<style >
9
9
font-family : " Red Hat Display" ;
10
10
}
11
11
12
- figure {
12
+ .logo-container {
13
13
text-align : center ;
14
14
margin : 2em 0 1em 0 ;
15
15
font-size : 2rem ;
16
+ position : relative ;
16
17
}
17
18
18
19
img {
50
51
}
51
52
52
53
.about {
54
+ background-color : black ;
53
55
display : none ;
56
+ font-size : 1.5rem ;
57
+ position : absolute ;
58
+ top : -10px ;
59
+ text-align : center ;
54
60
}
55
61
56
62
@media (max-width : 700px ) {
57
- figure {
63
+ .logo {
58
64
font-size : 1.5rem ;
59
65
}
66
+
67
+ #social {
68
+ flex-direction : column ;
69
+ }
60
70
}
61
71
62
72
@media (max-width : 500px ) {
63
- figure {
73
+ .logo {
64
74
font-size : 1rem ;
65
75
}
66
76
}
70
80
<title >JODC | JIIT Open-Source Developers Circle</title >
71
81
</svelte:head >
72
82
73
- <figure >
74
- <img alt =" JODC Logo" src =" jodcLogoWB.svg" />
75
- <!-- TODO(humancalico) How to change to font of figcaption -->
76
- <figcaption >JIIT Open-Source Developers Circle</figcaption >
77
- </figure >
78
-
79
- <!-- We are gonna animate the about content so it will show when user hovers or something -->
80
- <div class =" about" >
81
- According to GitHub’s “State of the Octoverse” report 2019, 99% of software
82
- projects in the world use Open Source Technologies in some way or the other.
83
- Open source has undoubtably changed the world, and we, the JODC (JIIT
84
- Open-Source Developers Circle) aim to help students to become a part of it. The
85
- JODC is an initiative by the students of JIIT-128 to promote open source
86
- culture. The hub is all about contributing to and collaborating on projects,
87
- networking, learning together and guiding students. We conduct talks, workshops,
88
- activities, one-to-one sessions and dev-sprints to mentor students. We encourage
89
- them to volunteer for open source projects and organisations and participate in
90
- open source initiatives such as Google Summer of Code and Outreachy to become
91
- better developers and for the betterment of open source.
83
+ <div class =" logo-container" >
84
+ <div class =" logo" >
85
+ <img alt =" JODC Logo" src =" jodcLogoWB.svg" />
86
+ <p >JIIT Open-Source Developers Circle</p >
87
+ </div >
88
+ <div class =" about" >
89
+ According to GitHub’s “State of the Octoverse” report 2019, 99% of software
90
+ projects in the world use Open Source Technologies in some way or the other.
91
+ Open source has undoubtably changed the world, and we, the JODC (JIIT
92
+ Open-Source Developers Circle) aim to help students to become a part of it. The
93
+ JODC is an initiative by the students of JIIT-128 to promote open source
94
+ culture.<br > The hub is all about contributing to and collaborating on projects,
95
+ networking, learning together and guiding students. We conduct talks, workshops,
96
+ activities, one-to-one sessions and dev-sprints to mentor students. We encourage
97
+ them to volunteer for open source projects and organisations and participate in
98
+ open source initiatives such as Google Summer of Code and Outreachy to become
99
+ better developers and for the betterment of open source.
100
+ </div >
92
101
</div >
93
102
103
+
94
104
<!-- TODO(humancalico) add as a list? -->
95
105
<div id =" social" >
96
- <a href ="https://github.com/jiitodc" ><Icon style ="margin-right: 10px" data ={github }/>GITHUB</a >
97
- <a href ="https://t.me/jiitodc" ><Icon style ="margin-right: 10px" data ={telegram }/>TELEGRAM</a >
98
- <a href ="https://twitter.com/jiitodc" ><Icon style ="margin-right: 10px" data ={twitter }/>TWITTER</a >
99
- <a href ="https://www.facebook.com/groups/jiitodc" ><Icon style ="margin-right: 10px; font-size:40px;" data ={facebook }/>FACEBOOK</a >
106
+ <a href =" https://github.com/jiitodc" >
107
+ <Icon style ="margin-right: 10px; scale:1.5;" data ={github } />GITHUB</a >
108
+ <a href =" https://t.me/jiitodc" >
109
+ <Icon style ="margin-right: 10px; scale:1.5;" data ={telegram } />TELEGRAM</a >
110
+ <a href =" https://twitter.com/jiitodc" >
111
+ <Icon style ="margin-right: 10px; scale:1.5;" data ={twitter } />TWITTER</a >
112
+ <a href =" https://www.facebook.com/groups/jiitodc" >
113
+ <Icon style ="margin-right: 10px; scale:1.5;" data ={facebook } />FACEBOOK</a >
100
114
</div >
0 commit comments