-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
104 lines (86 loc) · 2.17 KB
/
demo.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Magic Tags jQuery Demo</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Quicksand:300,400,700' rel='stylesheet' type='text/css'>
<style type="text/css">
body {
text-align: center;
font-family: 'Quicksand', sans-serif;
font-size: 150%;
font-weight: 300;
background-color: #2e2e2e;
color: white;
letter-spacing: .17em;
}
h1, h2, h3 {
font-weight: 700;
text-shadow: 0px 0px 6px white;
}
#magic-tags {
/* font-size: 120%;*/
line-height: 150%;
width: 70%;
margin: 0 auto;
}
#magic-tags a {
color: #f06d06;
text-shadow: 0px 0px 6px #f06d06;
border: 2px solid #7A4A23;
padding: 5px 15px;
line-height: 200%;
display: inline;
text-decoration: none;
background-color: black;
border-radius: 25px;
}
#magic-pressed {
color: #8C430A !important;
border: 2px solid #B35409 !important;
}
#stuff {
}
#stuff ul {
list-style-type: none;
text-align: left;
width: 50%;
margin: 0 auto;
}
#stuff ul li {
border-bottom: 1px solid #f06d06;
padding-bottom: 3px;
margin-bottom: 3px;
}
.magic-words {
color: #FF9440;
display: inline;
}
.magic-word-active {
/*color: #FF522B;*/
font-weight: bold;
text-shadow: 0px 0px 6px #f06d06;
}
</style>
</head>
<body>
<div id="magic-tags">
<h1>MAGIC TAGS</h1>
<div id="magic-tags-output">
</div>
</div>
<div id="stuff">
<h1> MY STUFF </h1>
<ul id="magic-tags-list">
<li><strong>1. ignore doors</strong> | <div class="magic-words">iron, knots, john</div></li>
<li><strong>2.</strong> <div class="magic-words">elizabeth, jalapeño, knots</div></li>
<li><strong>3.</strong> <div class="magic-words">jalapeño, iron, john, knots</div></li>
<li><strong>4. ignore iron</strong> | <div class="magic-words">wheels, john</div></li>
<li><strong>5.</strong> <div class="magic-words">iron, john, knots</div></li>
<li><strong>6.</strong> <div class="magic-words">diesel, doors, iron</div></li>
</ul>
</div>
<script src="magictags.js"></script>
</body>
</html>