-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeneralWithFlyoutButton.html
124 lines (103 loc) · 3.62 KB
/
GeneralWithFlyoutButton.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html>
<link rel="stylesheet" href="site.css" type="text/css" media="screen, projection"/>
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="css/ie.css" media="screen" />
<![endif]-->
<script type="text/javascript" src="jquery-1.3.1.min.js"></script>
<script type="text/javascript" language="javascript" src="jquery.dropdownPlain.js"></script>
<script type="text/javascript" src="slick.min.js"></script>
<script type="text/javascript" src="slick.js"></script>
</head>
<body>
<body bgcolor = "#1D1C1E">
<nav class="" style="background: url('http://www.colorhexa.com/680094.png'); height: 65px">
<div id="page-wrap" style="height: 40px">
<ul class="dropdown">
<li><a href="#">About Us</a>
<ul class="sub_menu">
<li><a href="#">Paola Pilaspilas</a></li>
<li>
<a href="#">Beau Grier</a>
</li>
</ul>
</li>
<li><a href="Lingo.html">Lingo</a>
<ul class="sub_menu">
<li><a href="General.html">General</a></li>
<li><a href="#">TBA 2,2</a></li>
<li><a href="#">TBA 2,3</a></li>
<li>
<a href="#">TBA 2,4</a>
<ul>
<li><a href="#">TBA 2,4,1</a></li>
<li><a href="#">TBA 2,4,2</a></li>
<li><a href="#">TBA 2,4,3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Automation</a>
<ul class="sub_menu">
<li>
<a href="#">Setting up</a>
</li>
<li>
<a href="#">Examples</a>
<ul>
<li><a href="#">WALCA</a></li>
<li><a href="#">COSUS</a></li>
<li><a href="#">CVS</a></li>
<li><a href="#">SAMUS</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Survival Tips</a>
<ul class="sub_menu">
<li><a href="#">From QA</a></li>
<li><a href="#">From Devs</a></li>
<li><a href="#">From PM & BA</a></li>
</ul>
</li>
</div>
</nav>
<!Dropdown Flyout List for Lingo>
<script>
$(document).ready(function(){
$("#flip").click(function(){
$("#panel").slideToggle("slow");
});
$("#flipServer").click(function() {
$("#panelServer").slideToggle("slow");
});
});
</script>
<style>
#panel,#flip,#panelServer,#flipServer
{
padding:5px;
text-align:center;
float: left;
color: #ffffff;
background-color:#680094;
border:solid 2px #c3c3c3;
}
#panel,#panelServer
{
padding:1px;
display:none;
}
</style>
</head>
<div id="flip">Phoenix Products</div>
<div id="panel"><font size="4">Phoenix Products are most likely navigated to from the Stationery & Cards categories on various vendors. Essentially they are card products (not Print or Posters).
There is a new version called Phoenix version 2 that the engineering team worked on while Paola and I were Co-ops. Some of the new improvements were a new html 5 builder and
the ability to add suites (which are groups of similar type cards)</font></div>
<br>
<br>
<div id="flipServer">Servers</div>
<div id="panelServer"><font size="4">Phoenix Products are most likely navigated to from the Stationery & Cards categories on various vendors. Essentially they are card products (not Print or Posters).
There is a new version called Phoenix version 2 that the engineering team worked on while Paola and I were Co-ops. Some of the new improvements were a new html 5 builder and
the ability to add suites (which are groups of similar type cards)</font></div>
</body>
</html>