Template

Main Page Navigation/styles.css

From Dogcraft Wiki

No edit summary
mNo edit summary
Line 13: Line 13:
background: #ffffff;  
background: #ffffff;  
border-radius:5px;   
border-radius:5px;   
box-shadow: 2px 0 5px rgba(85, 85, 85, 0.25),2px 0 10px rgba(85, 85, 85, 0.18);
box-shadow: 0 2px 3px rgba(85, 85, 85, 0.1), 0 0 0 1px rgba(85, 85, 85, 0.1);
width: 100px;
width: 100px;
height: 100px;
height: 100px;
padding: 10px;
padding: 10px;
transition: box-shadow 0.2s ease-in-out;
}
#transclude-wiki-navigation > div:hover,
#transclude-wiki-navigation > div:focus{
box-shadow: 0 2px 3px rgba(85, 85, 85, 0.25), 0 0 10px rgba(85, 85, 85, 0.25);
}
}

Revision as of 01:33, 12 January 2023

#transclude-wiki-navigation {
	display: flex; 
	justify-content: space-around; 
	gap: 8px; 
	flex-wrap: wrap;
}

#transclude-wiki-navigation > div {
	display: flex; 
	flex-direction: column; 
	align-items: center;  
	font-weight: 600; 
	background: #ffffff; 
	border-radius:5px;  
	box-shadow: 0 2px 3px rgba(85, 85, 85, 0.1), 0 0 0 1px rgba(85, 85, 85, 0.1);
	width: 100px;
	height: 100px;
	padding: 10px;
	transition: box-shadow 0.2s ease-in-out;
}

#transclude-wiki-navigation > div:hover,
#transclude-wiki-navigation > div:focus{
	box-shadow: 0 2px 3px rgba(85, 85, 85, 0.25), 0 0 10px rgba(85, 85, 85, 0.25);
}
This page was last modified on 12 January 2023, at 01:33. (4 months ago)