-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (90 loc) · 2.37 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Shop Chatbot</title>
</head>
<style>
#btn {
border: 2px solid white;
background-color: brown;
color: white;
border-radius: 10px;
width: 20%;
}
#btn:hover {
background-color: #16a085;
color: #fff;
cursor: pointer;
box-shadow: #fff;
}
@import url(https://fonts.googleapis.com/css?family=Righteous);
*,
*:before,
*:after {
margin-bottom: -300px;
padding: 0;
box-sizing: border-box;
position: relative;
}
html,
body {
height: 100%;
}
body {
text-align: center;
background-color: rgb(104, 37, 37);
}
body:before {
content: '';
display: inline-block;
vertical-align: middle;
font-size: 0;
height: 100%;
}
h1 {
display: inline-block;
color: white;
font-family: 'Righteous', serif;
font-size: 7em;
text-shadow: .03em .03em 0 rgb(97, 24, 24);
text-align: center;
}
h1:after {
content: attr(data-shadow);
position: absolute;
top: .06em;
left: -0.1em;
z-index: -1;
text-shadow: none;
background-image:
linear-gradient(45deg,
transparent 45%,
hsla(48, 20%, 90%, 1) 45%,
hsla(48, 20%, 90%, 1) 55%,
transparent 0);
background-size: .05em .05em;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shad-anim 15s linear infinite;
}
@keyframes shad-anim {
0% {
background-position: 0 0
}
0% {
background-position: 100% -100%
}
}
body {
height: 95%;
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://www.textures.com/system/gallery/photos/Buildings/Shops/22785/Shops0069_600.jpg?v=5");
}
</style>
</head>
<body>
<h1 data-shadow='Shop Chatbot'>Shop Chatbot</h1>
<center>
<h3 id="btn"><a href='https://webchat.botframework.com/embed/shopchatbot-a274-bot?s=x71lFODWwNE.3KCDX1I4uInBx2d_Mm6UMFAeZmANbwGABzXFiv8EKck' style="min-width: 400px; width: 100%; min-height: 500px; text-decoration: none; color: white;">CLICK TO CHAT</a></h3>
</center>
</body>
</html>