-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (108 loc) · 3.81 KB
/
index.html
File metadata and controls
111 lines (108 loc) · 3.81 KB
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
<html>
<head>
<meta name="theme-color" content="#d6d6d6">
<script src="https://twemoji.maxcdn.com/twemoji.min.js"></script>
<style type="text/css">
@media only screen and (max-width: 1025px) {
.blue-button {
-moz-box-shadow:inset 0px 1px 0px 0px #cae3fc;
-webkit-box-shadow:inset 0px 1px 0px 0px #cae3fc;
box-shadow:inset 0px 1px 0px 0px #cae3fc;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #4197ee) );
background:-moz-linear-gradient( center top, #79bbff 5%, #4197ee 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#4197ee');
background-color:#79bbff;
-webkit-border-top-left-radius:37px;
-moz-border-radius-topleft:37px;
border-top-left-radius:37px;
-webkit-border-top-right-radius:0px;
-moz-border-radius-topright:0px;
border-top-right-radius:0px;
-webkit-border-bottom-right-radius:37px;
-moz-border-radius-bottomright:37px;
border-bottom-right-radius:37px;
-webkit-border-bottom-left-radius:0px;
-moz-border-radius-bottomleft:0px;
border-bottom-left-radius:0px;
text-indent:0;
border:1px solid #469df5;
display:inline-block;
color:#ffffff;
font-family:Verdana;
font-size:15px;
font-weight:bold;
font-style:normal;
height:65px;
line-height:65px;
width:300px;
text-decoration:none;
text-align:center;
text-shadow:1px 1px 0px #287ace;
}
.blue-button:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4197ee), color-stop(1, #79bbff) );
background:-moz-linear-gradient( center top, #4197ee 5%, #79bbff 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4197ee', endColorstr='#79bbff');
background-color:#4197ee;
}.blue-button:active {
position:relative;
top:1px;
}
}
@media only screen and (min-width: 1026px){
#mobile-button{
display:none;
}
}
body{
background-color: #d6d6d6;
}
#main-content{
margin-right: auto;
margin-left: auto;
text-align: center;
}
#info-title{
font-family: Verdana;
font-size: 110%;
}
img.emoji {
// Override any img styles to ensure Emojis are displayed inline
margin: 0px !important;
display: inline !important;
}
</style>
</head>
<body>
<div id='main-content'>
<p id='info-title'><em>The personal assistant for Rutgers - New Brunswick students</em></p>
<p>Type in his name to get his attention!</p>
<iframe src='https://webchat.botframework.com/embed/henrythehelpfulfromhackru?s=_rh1jzsren0.cwA.fUU.bjo1uaMhx2vU0Z9sDbtrUBimqVYKLg-lRjRowY6eN7g'
style="
height: 75%;
width: 90%;
">
Your browser does not support this service.
</iframe>
<div id='mobile-button'>
<a href='https://webchat.botframework.com/embed/henrythehelpfulfromhackru?s=_rh1jzsren0.cwA.fUU.bjo1uaMhx2vU0Z9sDbtrUBimqVYKLg-lRjRowY6eN7g'><button class='blue-button'>Mobile Friendly Version</button></a>
</div>
<p>Made with <span id="emoji-span"></span> in New Jersey, using the <a href="https://dev.botframework.com/" target="_blank">Microsoft Bot Framework</a>.</p>
<p>
Read about the process <a href="https://drive.google.com/file/d/0B-onwAJnctfNSVdjalJUMUt0clk/view">here</a>.
</p>
</div>
</body>
<script type="text/javascript">
window.onload = function() {
// Set the size of the rendered Emojis
// This can be set to 16x16, 36x36, or 72x72
twemoji.size = '16x16';
document.getElementById('emoji-span').innerHTML = twemoji.parse('\u2764\uFE0F');
// Parse the document body and
// insert <img> tags in place of Unicode Emojis
twemoji.parse(document.body);
//U+1F496
}
</script>
</html>