-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbirksEgg2.html
96 lines (81 loc) · 2.06 KB
/
birksEgg2.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
<!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 . Birks ."
". Text . . ."
". . . . .";
}
.Text {
grid-area: Text;
}
.Birks {
grid-area: Birks;
}
body::-webkit-scrollbar{
display:none
}
#img1 {
width: 800px;
height: 971px;
margin-top: -200px;
margin-left: 25px;
}
#textBlock{
width: 550px;
margin-left: 2%;
margin-top: 40px;
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"> Library Cards </h3>
<ul>These library admission cards served the same function as today's student cards, allowing McGill students access to library collections and giving them permission to borrow books from the collection.
<br>
<br> MUA Accession no. 2003-0111.02.35
</ul>
</div>
<div class = "Birks">
<img id="img1" src="images/birksegg2.jpg">
</div>
</div>
</body>
</html>