Advertisement
AVONnadozie

Dropdown

Mar 16th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.56 KB | None | 0 0
  1. <div id="sidenav" class="sidenav native-color">
  2.     <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
  3.    
  4.     <a href="#">Overview</a>
  5.     <a href="#">Users</a>
  6.     <a href="#">Resources</a>
  7.     <a href="#">Categories</a>
  8.     <a href="#">Submissions</a>
  9.     <a class="toggle-btn" href="#">Analytics</a>
  10.     <ul>
  11.         <li><a href="#">Views</a></li>
  12.         <li><a href="#">Downloads</a></li>
  13.     </ul>
  14.     <a href="#">News</a>
  15.     <a href="#">Settings</a>
  16.     <a href="#">
  17.         Go to Dashboard
  18.     </a>
  19. </div>
  20.  
  21. <script>
  22.     $('#sidenav a.toggle-btn').click(function (e) {
  23.         e.preventDefault();
  24.         $(this).toggleClass('open');
  25.     });
  26. </script>
  27.  
  28. <style>
  29.     .sidenav a.toggle-btn:before,
  30.     .sidenav a.toggle-btn:after
  31.     {
  32.         font-family: FontAwesome;
  33.         font-size: 0.5em;
  34.         /*color: black;*/
  35.         /*background-color: white;*/
  36.         margin-left: 10px;
  37.         /*border-radius: 50%;*/
  38.     }
  39.     .sidenav a.toggle-btn:after{
  40.         content: "\f054";
  41.         padding: 3px 5px;
  42.     }
  43.     .sidenav a.open.toggle-btn:after{
  44.         content: "\f078";
  45.         padding: 3px;
  46.     }
  47.     .sidenav a + ul{
  48.         list-style: none;
  49.         display: none;
  50.         transition: display .5s;
  51.     }
  52.     .sidenav a.open + ul{
  53.         display: block;
  54.     }
  55.     .sidenav a + ul a{
  56.         font-size: 1.3em;
  57.         padding: 8px
  58.     }
  59.  
  60.  
  61.     /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  62.     @media screen and (max-height: 450px) {
  63.         .sidenav {padding-top: 15px;}
  64.         .sidenav a {font-size: 18px;}
  65.     }
  66. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement