-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmolsonEgg2.html
127 lines (107 loc) · 2.75 KB
/
molsonEgg2.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
<!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;
overflow-x: 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: 25px;
margin-left: 25px;
}
@media (min-width: 1200px) and (min-height: 700px ){
#img1 {
width: 700px;
height: auto;
margin-top: 25px;
margin-left: 25px;
}
}
@media (min-width: 1680px) and (min-height: 1080px){
#img1 {
width: 950px;
height: auto;
margin-left: 25px;
}
}
@media (min-width: 1920px) and (min-height: 1080px){
#img1 {
width: 1200px;
height: auto;
margin-left: 10px;
margin-top: 5px;
}
}
#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"> Beyond the Paper Record</h3>
<ul>The McGill archives houses a collection of artefacts as well as paper records; there is a diverse collection of ephemera and objects in the archives.
<br>
<br>This hockey stick was given to trainer and medical advisor Dr. Fred Tees by the McGill men's hockey team after their championship-winning 1937-1938 season. He acquired the hockey stick as a memento for his daughter.
</ul>
</div>
<div class = "Percival">
<img id="img1" src="images/mua_1996-0131_hockey-stick1000X383.jpg">
<div id="glass"></div>
</div>
</div>
</body>
</html>