Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_navbar.scss « partials « sass « assets - github.com/SAGGameDeveloper/hugo-minimalist-spa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff14e6503e9d1dc3a382d3f1897ba938a8851a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.navbar {
	display: flex;
	justify-content: space-evenly;
	
	flex-direction: row;
	text-align: center;
	
	min-height: 1.3rem;
	
	overflow: hidden;
	
	background-color: $color_navbar;
	@include respond-to(vertical-layout) { width: 100%; }
	
	@include transition(max-height 0.7s);
}

.navbar-element {	
	color: $color_navbar_elements;
	font-family: 'default';
	font-weight: 700;
	
	margin: 1.2rem 0 0.6rem 0;	
	@include respond-to(vertical-layout) { margin: 0.3rem 0; }
	
	font-size: calc(1.3rem);
	@include respond-to(vertical-layout) { font-size: calc(1.2rem); }
	
	@extend %navbar-element-transition;
}

.collapsible-menu {
	fill: $color_navbar_elements;
	align-self: center;
	width: 1.5rem;
	height: 1.5rem;
	
	.svg {
		width: 100%;
		height: 100%;
	}
}