-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathposter.html
431 lines (401 loc) · 17.2 KB
/
poster.html
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<!DOCTYPE html>
<html lang="en">
<!-- Hi there. Welcome in here!!. Your are viewing the source code of our Student Chapter Website -->
<!-- You are here, viewing this, is no accident. Hope you would like it :) -->
<head>
<title>
SVCE ACM Student chapter
</title>
<!-- Details of our site along with customised link preview & image -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="ACM Student Chapter @SVCE">
<meta name="description" content="ACM Student Chapter of SVCE">
<meta name="keywords" content="svce,event,tech,acm,student chapter">
<meta property="og:title" content="ACM Student Chapter @SVCE">
<meta property="og:description" content="ACM Student Chapter of SVCE">
<meta property="og:image" content="images/logos/svce_acm.png">
<meta property="twitter:title" content="ACM Student Chapter @SVCE">
<meta property="twitter:description" content="ACM Student Chapter of SVCE">
<meta property="twitter:image" content="images/logos/svce_acm.png">
<!-- Importing the styling elements to make our site look admirable :) -->
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/global.css">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Alegreya+SC" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css" />
<link href="https://fonts.googleapis.com/css?family=Exo+2:400,500,600" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="css/social.css">
<link href="https://fonts.googleapis.com/css?family=Staatliches" rel="stylesheet">
<style>
html,
body {
height: 100%
}
body {
display: flex;
flex-direction: column
}
.content {
flex: 1 0 auto;
display: flex;
align-items: center
}
#hero {
background-image: linear-gradient(to right bottom, #182e69, #08437d, #00588f, #006d9e, #0182ac);
border-radius: 50px;
margin: auto;
margin-top: 100px;
margin-bottom: 50px;
display: flex;
flex-direction: column;
padding: 30px 10px;
position: relative;
color: white
}
.fas {
animation-iteration-count: 5
}
#expand-btn,
#close-btn {
cursor: pointer;
margin: 0
}
#expand-btn {
display: flex
}
#close-btn {
display: none
}
.notif-text {
font-size: 24px;
background: #21252996;
border-radius: 15px;
font-family: 'Staatliches', cursive;
text-align: center;
-webkit-writing-mode: vertical-lr;
-ms-writing-mode: tb-lr;
writing-mode: vertical-lr;
text-orientation: upright;
margin-left: 0
}
#events-desc {
border: 1px solid white;
border-radius: 15px;
-webkit-box-shadow: 3px 3px 5px 0 rgba(255, 255, 255, 1), -3px -3px 5px 0 rgba(255, 255, 255, 1), -3px 3px 5px 0 rgba(255, 255, 255, 1), 3px -3px 5px 0 rgba(255, 255, 255, 1);
-moz-box-shadow: 3px 3px 5px 0 rgba(255, 255, 255, 1), -3px -3px 5px 0 rgba(255, 255, 255, 1), -3px 3px 5px 0 rgba(255, 255, 255, 1), 3px -3px 5px 0 rgba(255, 255, 255, 1);
box-shadow: 3px 3px 5px 0 rgba(255, 255, 255, 1), -3px -3px 5px 0 rgba(255, 255, 255, 1), -3px 3px 5px 0 rgba(255, 255, 255, 1), 3px -3px 5px 0 rgba(255, 255, 255, 1);
padding: 15px;
margin-left: 15px;
margin-right: 15px;
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0
}
#mob-events-desc {
border: 1px solid white;
border-radius: 15px;
-webkit-box-shadow: 3px 3px 5px 0 rgba(255, 255, 255, 1), -3px -3px 5px 0 rgba(255, 255, 255, 1), -3px 3px 5px 0 rgba(255, 255, 255, 1), 3px -3px 5px 0 rgba(255, 255, 255, 1);
-moz-box-shadow: 3px 3px 5px 0 rgba(255, 255, 255, 1), -3px -3px 5px 0 rgba(255, 255, 255, 1), -3px 3px 5px 0 rgba(255, 255, 255, 1), 3px -3px 5px 0 rgba(255, 255, 255, 1);
box-shadow: 3px 3px 5px 0 rgba(255, 255, 255, 1), -3px -3px 5px 0 rgba(255, 255, 255, 1), -3px 3px 5px 0 rgba(255, 255, 255, 1), 3px -3px 5px 0 rgba(255, 255, 255, 1);
padding: 15px;
margin-left: 15px;
margin-right: 15px;
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0
}
.mob-notif-text {
display: none;
font-size: 24px;
background: #21252996;
border-radius: 15px;
font-family: 'Staatliches', cursive;
text-align: center;
letter-spacing: .1em
}
.event-img {
margin: 20px auto;
width: 100%;
max-width: 350px
}
.event-link {
color: #00BCD4;
text-decoration: underline
}
#hero #herologo {
margin-left: 5px;
height: calc(50vh - 60px);
align-self: center;
min-width: calc(50vh - 60px);
padding: 5px
}
#hero #intro {
border-radius: 15px;
margin: auto 15px;
padding-left: 15px;
padding-right: 15px;
align-self: center
}
#intro-heading {
margin-bottom: 20px;
text-align: center;
color: rgb(131, 206, 226);
font-size: calc(2.25vw + 24px);
font-weight: 700;
line-height: 1.1;
align-self: center
}
.event-heading {
display: flex;
flex-direction: row-reverse;
justify-content: space-around;
margin-bottom: 20px
}
#templates {
display: flex;
flex-direction: row;
justify-content: space-around
}
@media screen and (max-width:992px) {
.content {
background-image: -webkit-linear-gradient(top left, #182e69, #08437d, #00588f, #006d9e, #0182ac);
background-image: -o-linear-gradient(top left, #182e69, #08437d, #00588f, #006d9e, #0182ac);
background-image: linear-gradient(to bottom right, #182e69, #08437d, #00588f, #006d9e, #0182ac);
padding: 10px
}
#hero {
background-image: none;
margin-top: 70px;
margin-bottom: 20px;
flex-direction: column;
height: 100%
}
.event-heading {
flex-direction: column
}
#herologo {
min-height: 260px;
min-width: 260px;
margin-bottom: 10px
}
.expand-switch {
display: none!important
}
#intro {
padding: 0!important;
margin: 30px 15px 50px!important
}
#intro-heading {
line-height: 1.2;
font-size: calc(3vw + 24px)
}
#mob-events-desc {
opacity: 1;
display: flex;
margin: auto
}
.mob-notif-text {
display: block
}
#templates {
flex-direction: column;
align-items: center
}
}
</style>
</head>
<body>
<!-- Navigation Bar at the top-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top navbar-shrink animated fadeInDown" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top"><img src="images/logos/svce_acm_2.png"></a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
</button>
<!-- Navigation bar -->
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="teams.html">Team</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="contact.php">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- #nav -->
<div class="content animated fadeIn">
<div id="hero" class="container">
<div class="event-heading">
<h2 id="intro-heading">De://Sign<br>A Poster Design Competition</h2>
<img src="images/logos/herologo.svg" alt="" id="herologo">
</div>
<!-- .event-heading -->
<ul>
<p><b>TOPICS:</b></p>
<li>Staying safe on the internet.</li>
<li>Reducing your Digital Footprint.</li>
<li>Wilcard- Any poster that spreads "awareness about technology".</li><br>
<p><b>RULES:</b></p>
<li>You can use any software to create posters. Bonus points will be awarded for use of Photoshop, Illustrator or similar software. You can use any of the templates available <a href="#templates" class="event-link">below</a>.</li>
<li>All posters must be mailed to <a class="event-link" href="[email protected]">[email protected]</a> with the subject <b>"Poster Design"</b>. Please include your Name, College, Year and Department in the body of the mail. If you
have a work file (<b>.psd, .ai, .cd, etc.</b>), attach the same.</li>
<li>You may submit more than one poster.</li>
<li>You may submit posters before midnight on 15<sup>th</sup> March 2019.</li>
<li>All posters will be put up on our social media pages. The most popular posters will receive bonus points.</li>
<li>The best posters may be printed for display on our college noticeboards.</li>
<li>Plagiarism is <b>strictly prohibited</b>. You may use images and text from elsewhere but the overall design of the poster must be your own.</li><br>
<p><b>JUDGING CRITERIA:</b></p>
<li>Artistry & Creativity</li>
<li>Overall Appeal</li>
<li> Relevance & Adherence to theme</li>
<li>Originality & Uniqueness </li><br>
<p><b>PRIZES:</b></p>
<li>1st Place:₹300; 2nd place:₹200.</li>
<li>Digital Certificates for winners.</li>
<li>Selected SVCE students maybe invited to interview for design roles at the <b>SVCE ACM STUDENT CHAPTER</b>
</br>and <b>Curtain Call SVCE (Drama Club)</b></li>
</ul>
<div id="templates" style="margin-top: 30px;">
<div id="png">
<h2 class="template-title">PNG template</h2>
<!-- #png -->
<a class="event-link" href="resources/posterdesign.png" download="posterdesig">Download PNG template</a>
</div>
<!-- #png -->
<div id="psd">
<h2 class="template-title">PSD template</h2>
<!-- #psd -->
<a class="event-link" href="resources/posterdesign.psd" download>Download PSD template</a>
</div>
<!-- #psd -->
<div id="ai">
<h2 class="template-title">AI template</h2>
<!-- #ai -->
<a class="event-link" href="resources/posterdesign.ai" download>Download AI template</a>
</div>
<!-- #ai -->
</div>
<!-- #templates -->
</div>
<!-- .container -->
</div>
<!-- .content -->
<!-- Footer -->
<footer class="footer animated fadeIn">
<div class="container">
<div class="row">
<div class="col-lg-6 h-100 text-center text-lg-left my-auto">
<p class=" small mb-4 mb-lg-0">© SVCE-ACM 2020. All Rights Reserved.</p>
</div>
<div class="col-lg-6 h-100 text-center text-lg-right my-auto">
<ul class="list-inline mb-0">
<li class="list-inline-item mr-3">
<a href="https://www.facebook.com/SVCEACM/">
<i class="fab fa-facebook fa-2x fa-fw"></i>
</a>
</li>
<li class="list-inline-item mr-3">
<a href="https://www.linkedin.com/company/svceacm">
<i class="fab fa-linkedin fa-2x fa-fw"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/svceacm/">
<i class="fab fa-instagram fa-2x fa-fw"></i>
</a>
</li>
<li class="list-inline-item mr-3">
<a href="https://github.com/SVCE-ACM">
<i class="fab fa-github fa-2x fa-fw"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.easing.js"></script>
<script src="js/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.2.0/anime.min.js"></script>
<script>
function expand() {
$('#intro').css('display', 'none');
$('#events-desc').css('display', 'flex');
$('#herologo').css({
position: 'absolute',
right: '50%'
});
anime({
targets: '#herologo',
duration: 200,
easing: 'linear',
right: ['50%', '0%'],
autoplay: !1,
complete: function(anim) {
$('#herologo').css({
position: '',
right: ''
});
$('#intro').css('opacity', 0);
$('#events-desc').css('opacity', 1);
$('#expand-btn').css('display', 'none');
$('#close-btn').css('display', 'flex')
}
}).play()
}
function close() {
$('#intro').css('display', 'block');
$('#events-desc').css('display', 'none');
$('#herologo').css({
position: 'absolute',
right: '0%'
});
anime({
targets: '#herologo',
duration: 200,
easing: 'linear',
right: ['0%', '50%'],
autoplay: !1,
complete: function(anim) {
$('#herologo').css({
position: '',
right: ''
});
$('#intro').css('opacity', 1);
$('#events-desc').css('opacity', 0);
$('#expand-btn').css('display', 'flex');
$('#close-btn').css('display', 'none')
}
}).play()
}
$('#expand-btn').click(function() {
$('.fas').removeClass('animated heartBeat');
expand()
});
$('#close-btn').click(function() {
close()
});
outroAnimation('.navbar', '.content, .footer')
</script>
</body>