Advertisement
LegoDrifter

WebStorm 3 ( Menus )

Jul 1st, 2020
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="css/style.css">
  9. <title>Menu Styling</title>
  10. </head>
  11. <body>
  12. <ul class="navbar">
  13. <li><a href="#">Home</a></li>
  14. <li><a href="#">About</a></li>
  15. <li><a href="#">Services</a></li>
  16. <li><a href="#">Contact</a></li>
  17. </ul>
  18. <br><br>
  19. <ul class="side-menu">
  20. <li><a href="#">Home</a></li>
  21. <li><a href="#">About</a></li>
  22. <li><a href="#">Services</a></li>
  23. <li><a href="#">Contact</a></li>
  24. </ul>
  25. </div>
  26.  
  27. </body>
  28. </html>
  29.  
  30.  
  31. body
  32. {
  33. font-family: Arial,Helvetica,sans-serif;
  34. }
  35. /* NAVBAR */
  36. .navbar
  37. {
  38. list-style: none;
  39. margin: 0;
  40. padding: 0;
  41. background: #4c6ca0;
  42. border-radius: 5px;
  43. overflow: auto;
  44. }
  45. .navbar li
  46. {
  47. float:left;
  48. }
  49. .navbar li a
  50. {
  51. color: white;
  52. text-decoration: none;
  53. display: block;
  54. padding: 15px 20px;
  55. }
  56. .navbar li a:hover
  57. {
  58. background-color: darkolivegreen;
  59. color: lightgrey;
  60. }
  61. /* SIDE MENU */
  62. .side-menu
  63. {
  64. list-style: none;
  65. border: 1px lightgrey solid;
  66. border-radius: 10px;
  67. width: 300px;
  68. padding: 20px;
  69. }
  70. .side-menu li
  71. {
  72. font-size: 18px;
  73. line-height: 2.4em;
  74. border-bottom: dotted 1px grey;
  75. }
  76. .side-menu li:last-child
  77. {
  78. border: none;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement