summaryrefslogtreecommitdiff
path: root/CSS/main.css
blob: ade05fe00ca957272b79d47253652a037b59b4e2 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * Color scheme
 * Oxford Blue: 061A40
 * USAFA Blue: 0353A4
 * Honolulu Blue: 006DAA
 * Prussian Blue: 003559
 * Azure X 11 Web Color: D6E5E3
 */
@font-face{
	font-family:IBM Plex Mono;
	src: url(../fonts/IBMPlexMono-Regular.ttf);
}
body, html{
	height: calc(100% - 2em);
}
body{
	background-color:D6E5E2;
	color:003559;
	font-family:IBM Plex Mono;
}
ul{
	text-transform:uppercase;
	margin:0;
	padding:0;
	overflow:hidden;
	background-color:003559;
	list-style-type:none;
}
li{
	float:left;
}
li a{
	display:block;
	color:D6E5E3;
	text-align:center;
	padding:14px 16px;
	text-decoration:none;
}
li a:hover{
	background-color:061A40;
}
.main{
	margin:auto;
}
@media only screen and (min-width: 1440px){
	.main{
		margin:auto;
		width:60%;
	}
}
@media only screen and (min-height: 1440px){
	li a{
		font-size:24px
	}
}