forked from Botanical/BotanJS
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			868 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			868 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
.home {
 | 
						|
    position: relative;
 | 
						|
	width: 100%;
 | 
						|
	overflow: hidden;
 | 
						|
}
 | 
						|
 | 
						|
header {
 | 
						|
	position: relative;
 | 
						|
}
 | 
						|
 | 
						|
#menu {
 | 
						|
	font-size: 1.75em;
 | 
						|
	text-align: right;
 | 
						|
}
 | 
						|
 | 
						|
#menu > * {
 | 
						|
	font-family: custom-sans;
 | 
						|
	cursor: pointer;
 | 
						|
	line-height: 1em !important;
 | 
						|
 | 
						|
	position: relative;
 | 
						|
 | 
						|
	color: rgba( 0, 0, 0, 0.5 );
 | 
						|
	-webkit-filter: blur( 2px );
 | 
						|
	filter: blur( 2px );
 | 
						|
}
 | 
						|
 | 
						|
#menu > *[data-active] {
 | 
						|
	-webkit-filter: blur( 0px );
 | 
						|
	filter: blur( 0px );
 | 
						|
	color: navy;
 | 
						|
}
 | 
						|
 | 
						|
#menu > *:hover {
 | 
						|
    color: rgba( 0, 0, 0, 0.75 );
 | 
						|
	-webkit-filter: blur( 0px );
 | 
						|
	filter: blur( 0px );
 | 
						|
    text-decoration: none;
 | 
						|
}
 | 
						|
 | 
						|
.horizon {
 | 
						|
	position: relative;
 | 
						|
	width: 100%;
 | 
						|
	height: 7px;
 | 
						|
	background: #76400C;
 | 
						|
	z-index: 4;
 | 
						|
}
 | 
						|
 | 
						|
.c-sep {
 | 
						|
    display: inline-block;
 | 
						|
    width: 1px;
 | 
						|
    margin: 0 2em;
 | 
						|
}
 | 
						|
.c-sep:after {
 | 
						|
    content: "";
 | 
						|
    position: absolute;
 | 
						|
    height: 100%;
 | 
						|
    border-left: 1px solid black;
 | 
						|
    top: 0;
 | 
						|
}
 |