-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeforthesis.html
50 lines (42 loc) · 1.13 KB
/
timeforthesis.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
<html>
<head>
<meta charset="UTF-8">
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<!-- uncomment lines below to include extra p5 libraries -->
<script language="javascript" src="libraries/p5.dom.js"></script>
<!-- <script language="javascript" src="libraries/p5.sound.js"></script> -->
<script language="javascript" type="text/javascript" src="js/timeforthesis.js"></script>
</head>
<style>
@import url('https://fonts.googleapis.com/css?family=Space+Mono');
body {
padding: 0;
margin: 0;
}
p {
text-align: left;
font-size: 3em;
font-family: 'Space Mono', monospace;
}
a{
text-decoration: none;
text-shadow: 1px;
}
.center {
text-align: center;
position: relative;
margin-left: 5%;
margin-right: 5%;
top: 50%;
transform: translateY(-50%);
}
</style>
<body>
<div class="center">
<p id="time"></p>
<p>
If you want to see the end result check <a href="Thesis_SMM.pdf">this!</a>
</p>
</div>
</body>
</html>