-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacademics.html
119 lines (106 loc) · 3.73 KB
/
academics.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" charset="UTF-8">
<title>GM - Academics</title>
<link rel="stylesheet" href="styles.css">
<style>
#inner_sec {
margin-bottom: 2%;
width: 95%;
font-weight:500;
}
.inner_sec_follow {
background-color: transparent;
background-image: url('background.png');
background-repeat: repeat-x;
background-attachment: scroll;
background-clip: border-box;
background-origin: padding-box;
background-position-x: left;
background-position-y: top;
background-size: auto auto;
margin-bottom: 0%;
padding-top: 2%;
padding-bottom:0%;
width: 95%;
font-weight:500;
}
#qualifications {
padding-left: 5%;
padding-top: 3%;
font-size: 0.75em;
font-weight: 100;
display:inline-block;
color:black;
}
#specializations {
padding-left: 5%;
padding-top: 1%;
font-size: 0.75em;
}
#datequal {
float:right;
}
#bu_logo {
position:relative;
max-height: 100%;
max-width: 60%;
display:block;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
margin-bottom: 5%;
}
#contributions {
padding-left: 5%;
padding-top: 2%;
color:darkgrey;
margin-bottom: 5%;
}
</style>
</head>
<body>
<div class="wrapper">
<div id="aside">
<div id="aside_cover">
<p style="color:white; margin-bottom:5%;">
Gregory <br> Mierzwinski<br>
</p>
<nav class="sidebar-nav">
| <a href="index.html">Home</a> <br>
| <a href="archives.html">Archive</a> <br>
| <a href="academics.html">Academics</a> <br>
| <a href="projects.html">Projects</a> <br>
| <a href="contact.html">Contact</a> <br>
</nav>
</div>
</div>
<div id="section">
<div id="inner_sec">
Qualifications
<div id="qualifications">
<span>
Bachelor's of Science, Bishop's University <span id="datequal"> June 2017 </span> <br>
<div id="specializations">
Honours in Computer Science <br>
Minor in Mathematics
</div>
<a href="https://www.ubishops.ca" alt="Bishop's University">
<img src="bu_logo.jpg" id="bu_logo" alt="Bishop's University"></img>
</a>
</span>
</div>
</div>
<div class="inner_sec_follow">
Academic Contributions
<div id="contributions">
<a href="https://www.arxiv.org/abs/1612.04861" id="a_section_link" style="font-size: 0.75em;">
Some Counterexamples for Compatible Triangulations
</a>
</div>
</div>
</div>
</div>
</body>
</html>