-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.04 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tooltip demo</title>
<meta name="description" content="Tooltip demo">
<style>
body {
}
section {
width:60%;
margin: 3em auto;
}
.box {
display: inline-block;
width: 20em;
min-height: 1em;
margin: 0 0 4em;
padding: 1em;
line-height: 1.5;
color: white;
border: 1px solid #4777AF;
background: #6797CF;
border-radius: 4px;
box-shadow: inset 0 0 0 1px #87B7FF;
cursor: pointer;
}
</style>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<section>
<h2>JavRok Demos</h2>
<div>
<a href="/tooltips" class="box">
Tooltip Demo
</a>
</div>
</section>
</body>
</html>