-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-chat-fast.html
81 lines (75 loc) · 3.08 KB
/
index-chat-fast.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
<!DOCTYPE html>
<html style="padding: 0; margin: 0" lang="en">
<head>
<title>UQ Library - Reusable Web Components</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" type="text/css" href="https://static.uq.net.au/v15/fonts/Roboto/roboto.css" />
<link
rel="stylesheet"
type="text/css"
href="https://static.uq.net.au/v15/fonts/Merriweather/merriweather.css"
/>
<link rel="stylesheet" type="text/css" href="https://static.uq.net.au/v15/fonts/Montserrat/montserrat.css" />
<style>
.layout-card {
margin-left: 1rem;
margin-right: 1rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
}
@media (min-width: 37.5rem) {
.layout-card {
padding-left: 0.75rem;
padding-right: 0.75rem;
margin-left: 3.25rem;
margin-right: 3.25rem;
max-width: none;
}
}
@media (min-width: 69.25rem) {
.layout-card {
margin-left: auto;
margin-right: auto;
max-width: 61.5rem;
}
}
@media (min-width: 80rem) {
.layout-card {
margin-left: 8.375rem;
margin-right: 8.375rem;
max-width: none;
padding-left: 1rem;
padding-right: 1rem;
}
}
@media (min-width: 90rem) {
.layout-card {
margin-left: auto;
margin-right: auto;
max-width: 71rem;
padding-left: 1rem;
padding-right: 1rem;
}
}
</style>
</head>
<body style="padding: 0; margin: 0; font-family: 'Roboto', sans-serif; background-color: #f7f7f7">
<!-- This is a test GTM code - insert your site's GTM with attribute name `gtm` -->
<uq-gtm></uq-gtm>
<uq-header hidelibrarymenuitem skipnavid="skiptohere"></uq-header>
<uq-site-header sitetitle="Library Test" showmenu>
<span slot="site-utilities">
<auth-button />
</span>
</uq-site-header>
<cultural-advice-popup secondsTilCulturalAdviceAppears="2"></cultural-advice-popup>
<div class="layout-card" style="min-height: 300px">
<h1 id="skiptohere" tabindex="-1">UQ Library - Reusable Web Components sampler</h1>
<p>This page loads proactive chat dialog as fast as possible, so we can rely on it having popped up.</p>
</div>
<connect-footer></connect-footer>
<uq-footer loginurl="http://library.uq.edu.au"></uq-footer>
<proactive-chat secondsTilProactiveChatAppears="0"></proactive-chat>
<script type="text/javascript" src="uq-lib-reusable.min.js"></script>
</body>
</html>