Advertisement
shadiff

navbar

Mar 28th, 2023
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. @media screen and (max-width: 948px) {
  2. .Navbar{
  3. display: flex;
  4. position: relative;
  5. padding-top: 2px;
  6. padding-bottom: 14px;
  7.  
  8. }
  9. .mobnavitem{
  10. text-decoration: none;
  11. color: #183f37;
  12. margin-left: 8px;
  13.  
  14. }
  15. .nav-item {
  16. display: none;
  17. }
  18. .nav-items {
  19. display: none;
  20. }
  21. .inner-submenu-window {
  22. display: none;
  23. }
  24. .Navbar-mobile {
  25. display: block;
  26. position: relative;
  27. text-decoration: none;
  28. top: 0.3px;
  29. flex-direction: column;
  30. background-color: #CEA23B;
  31. width: 100%;
  32. /* transition: height 0.2s ease-in-out; */
  33. }
  34. .mobile-nav-items {
  35. color: #183f37;
  36. text-align: left;
  37. background-color: #CEA23B;
  38. padding: 0.8rem;
  39. }
  40. /* .Navbar a{
  41. color: #183f37;
  42. margin-left: 20px;
  43. text-decoration: none;
  44. } */
  45. .submenu {
  46. display: none;
  47. }
  48. .show {
  49. display: block;
  50. }
  51. .chevron {
  52. position: relative;
  53. color: #183f37;
  54. font-size: 18px;
  55. float: right;
  56. padding: 0 20px;
  57. top: 1px;
  58. }
  59. .stretch{
  60. color: black
  61. }
  62. .mobile-nav-icon {
  63. position: absolute;
  64. font-size: 25px;
  65. top: 1px;
  66. right: 20px;
  67. padding: 0.4rem;
  68. }
  69. .search {
  70. position: absolute;
  71. display: block;
  72. font-size: 22px;
  73. top: 10px;
  74. right: 10px;
  75. background-color: #E8C99B;
  76. padding: 0.5rem;
  77. border-radius: 45%;
  78. }
  79. .mobile-submenu-window {
  80. text-transform: camelcase;
  81. margin-top: 10px;
  82. margin-left: 12px;
  83. font-size: 16px;
  84. position: relative;
  85. }
  86. .mobile-dropDownItem {
  87. list-style: none;
  88. text-decoration: none;
  89. color: #183f37;
  90. padding: 6px;
  91. display: block;
  92. }
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement