Difference between revisions of "Template:Main menu/styles.css"

Line 3: Line 3:
justify-content: center;
justify-content: center;
align-items: center;
align-items: center;
background-color: #f1f1f1;
}
}



Revision as of 12:05, 8 January 2024

.main-menu-container {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f1f1f1;
}

.main-menu-container p {
	margin: 0;
}

.main-menu-container > * {
	position: relative;
	display: inline-block;
}

.main-menu-container a {
	display: block;
	padding: 0.5rem 2rem;
	background-color: #f1f1f1;
}
.main-menu-container a:hover {
	background-color: #e0e0e0;
}

.main-menu-dropdown-content {
	display: none ;
	position: absolute;
	z-index: 101;
	min-width: 180px;
	background-color: #f1f1f1;
}
.main-menu-dropdown-content a {
	display: block;
}
.main-menu-dropdown-content a:hover {
	background-color: #e0e0e0;
}
.main-menu-home:hover > *, .main-menu-our-network:hover > *  {
	display: block;
}