-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcampusEgg.html
101 lines (84 loc) · 2.23 KB
/
campusEgg.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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-191749773-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-191749773-2');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
overflow-y: scroll;
-ms-overflow-style:none;
scrollbar-width:none;
font-family: 'PT Sans', sans-serif;
}
.grid-container {
display: grid;
grid-template-columns: 0.2fr 2fr 0.2fr 2.4fr 0.2fr;
grid-template-rows: 0.2fr 0.7fr 2.8fr 1fr 0.3fr;
gap: 0px 0px;
grid-template-areas:
". . . . ."
". Text . . ."
". Text . Percival ."
". Text . . ."
". . . . .";
}
.Text {
grid-area: Text;
}
.Percival {
grid-area: Percival;
}
body::-webkit-scrollbar{
display:none
}
#img1 {
width:1000px;
height: auto;
margin-top: -200px;
margin-left: 25px;
}
#textBlock{
width: 550px;
margin-left: 2%;
margin-top: 20px;
font-size:120%;
text-align:left;
Float: left;
background: #f6f5f3;
height:30em;
-webkit-box-orient:horizontal;
-webkit-box-direction:horizontal;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-ms-flex-direction:column;
flex-direction:column;
position: relative;
border-radius: 16px;
}
</style>
</head>
<body>
<div class="grid-container">
<div id="textBlock" class="Text">
<h3 align="center">Macdonald Enginering Building</h3>
<ul>The Macdonald Engineering Building, donated to McGill in 1893 by Sir William Christopher Macdonald, suffered a devastating fire in April 1907.
<br>
<br>This took place just two weeks before the fire that destroyed the original McGill Medical Building.
<br>
<br> MUA PR023150
</ul>
</div>
<div class = "Percival">
<img id="img1" src="https://github.com/ROAAr-projects/McGill-Panorama/blob/TroubleShooting/images/PR023150.jpg?raw=true">
</div>
</div>
</body>
</html>