diff options
author | luxagraf <sng@luxagraf.net> | 2019-05-04 15:48:55 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-05-04 15:48:55 -0500 |
commit | 79fafe2f44f5e31522dd93013950474342bfdfb0 (patch) | |
tree | bc9ccf5b4eadeebf3a2f86b21f9b382edfa41735 /published/Webmonkey/css_dropdowndemo.html | |
parent | 62167091560c908db0613bcb35ff9ae8292f5961 (diff) |
archived all the stuff from freelancing for wired
Diffstat (limited to 'published/Webmonkey/css_dropdowndemo.html')
-rw-r--r-- | published/Webmonkey/css_dropdowndemo.html | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/published/Webmonkey/css_dropdowndemo.html b/published/Webmonkey/css_dropdowndemo.html deleted file mode 100644 index b934cc9..0000000 --- a/published/Webmonkey/css_dropdowndemo.html +++ /dev/null @@ -1 +0,0 @@ -<html>
<head>
<style type="text/css">
ul {
margin: 0;
padding: 0;
list-style: none;
}
ul li {
position: relative;
float: left;
width: 100px;
}
li ul {
position: absolute;
top: 30px;
opacity: 0;
}
ul li a {
display: block;
text-decoration: none;
line-height: 20px;
color: #777;
padding: 5px;
background: #CC0;
margin: 0 2px;
display: block;
-webkit-transition-property: background-color, color, text-shadow;
-webkit-transition-duration: .5s;
-webkit-transition-timing-function: ease-in;
}
ul li a:hover { background: #66F; }
li:hover ul { opacity: 1;
-webkit-transition: opacity 4s linear;
}
</style>
</head>
<body>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Web</a>
<ul>
<li><a href="#">Browser</a></li>
<li><a href="#">Search</a></li>
</ul>
</li>
<li><a href="">Monkey</a>
<ul>
<li><a href="">Eating Banana</a></li>
<li><a href="">Throwing Poop</a></li>
</ul>
</li>
<li><a href="">Contact</a>
<ul>
<li><a href="">Via Web</a></li>
<li><a href="">Via Phone</a></li>
<li><a href="">Via tin can and string</a></li>
</ul>
</li>
</ul>
</body>
</html>
\ No newline at end of file |