summaryrefslogtreecommitdiff
path: root/style/header.less
blob: 9e35e35ae0408652fe37f31a3a55faa93a4a8b04 (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
header {
	nav {
		ul {
			float: right;
			display: inline-block;
		}
	
		ul li {
			display: inline-block;

			a {
				padding: 0.5em 1em;
			}

			a:hover {
				color: white;
				background-color: crimson;
				text-decoration: none;
			}
		}

	}

	h1 {
		float: left;
		font-weight: normal;
		text-transform: uppercase;
		color: gray;
		margin: 0;
	}
}