-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathconstitution.html
More file actions
49 lines (42 loc) · 1.26 KB
/
constitution.html
File metadata and controls
49 lines (42 loc) · 1.26 KB
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
{% extends 'globals/base.html' %}
{% load static %}
{% block title %}
Alumni Constitution
{% endblock %}
{% block css %}
<style>
.constitution{
text-align:center;
}
.constitutionContainer{
width:800px;
height:800px;
}
@media (max-width: 768px) {
.constitutionContainer {
width: 90%;
height: 400px;
}
}
</style>
{% endblock %}
{% block body %}
{% include 'globals/navbar.html' %}
<div class="p-0 m-0 masthead-bg w-100 h-100 parallax" style="min-height:300px !important; height:300px !important; background-position-y: 300px;"></div>
<header class="masthead text-center text-white d-flex" style="height:0px; min-height:300px;">
<div class="container my-auto" style="margin-bottom:50px !important;">
<div class="row">
<div class="col-lg-8 mx-auto align-middle">
<h1 class="text-uppercase mt-4 font-open-sans">
<strong>ALUMNI CONSTITUTION</strong>
</h1>
</div>
</div>
</div>
</header>
<section id="constitution" class="constitution text-center p-3">
<iframe src="{% static 'AlumniConnect/assets/alumni_constitution.pdf' %}" class="constitutionContainer">
</iframe>
</section>
{% endblock %}
{% include 'globals/footer.html' %}