Advertisement
izuemis

dropdown menu

Nov 17th, 2022
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <!-- made by @805online credit is appreciated -->
  2.  
  3.  
  4. <head>
  5. <script type="text/javascript" src="https://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  6. <script type="text/javascript">
  7. $(document).ready(function(){
  8. $(".links_body").hide();
  9. $(".links_head").click(function(){
  10. $(this).next(".links_body").slideToggle('active');
  11. }); }); </script>
  12.  
  13. <style type="text/css">
  14. .links_list {
  15. margin:0px;
  16. padding:0px;
  17. width: auto;
  18. }
  19.  
  20. .links_head {
  21. padding-top:2px;
  22. padding-bottom:2px;
  23. cursor: pointer;
  24. position: relative;
  25. margin: 0px;
  26. text-align: center;
  27. font-family: inconsolata;
  28. font-weight: bold;
  29. font-size: 1.1em;
  30. color: #fff;
  31. text-shadow: -1px 0 #424242, 0 1px #424242, 1px 0 #424242, 0 -1px #424242, 0 0;
  32. background: -webkit-linear-gradient(-90deg, #FACDE0 5%, #FACDE0 5%, #fff 100%);
  33. border: 1px solid #424242;
  34. border-radius: 5px 5px 0px 0px;
  35. }
  36.  
  37. .links_body {
  38. padding: 10px;
  39. text-align: left;
  40. font-family: inconsolata;
  41. color: #ffffff;
  42. line-height: 1.3em;
  43. display: none;
  44. border-left: 1px solid #424242;
  45. border-right: 1px solid #424242;
  46. border-bottom: 1px solid #424242;
  47. border-radius: 0px 0px 5px 5px;
  48. }
  49. </style>
  50.  
  51. <body>
  52. <div class="links_list">
  53. <p class="links_head">MENU</p>
  54. <div class="links_body">
  55. <left>
  56. <a href="https://gina.crd.co/#">Home</a>
  57. <br>
  58. <a href="https://gina.crd.co/#about">About Me</a>
  59. <br>
  60. <a href="https://gina.crd.co/#comms">Commissions</a>
  61. </left>
  62. </div></div>
  63. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement