1,278
edits
(38 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
.main-menu-container | .main-menu-container { | ||
display: flex; | |||
justify-content: center; | |||
background-color: #f1f1f1; | |||
} | } | ||
.main-menu- | |||
.main-menu-container a { | |||
text-decoration: none; | |||
} | } | ||
. | |||
.padded { | |||
padding: 0.5rem 1.5rem; | |||
} | } | ||
. | |||
.padded:hover { | |||
background-color: #e0e0e0; | |||
} | } | ||
.main-menu- | |||
.main-menu-dropdown-trigger { | |||
position: relative; | |||
} | |||
.main-menu-dropdown-content { | |||
display: none; | |||
position: absolute; | |||
z-index: 101; | |||
min-width: 180px; | |||
background-color: #f1f1f1; | |||
transition: .5s; | |||
} | |||
.main-menu-dropdown-trigger:hover .main-menu-dropdown-content { | |||
display: block; | |||
} | } |