summaryrefslogtreecommitdiff
path: root/src/main.scss
blob: ab62e0a0e3354e777af8fc3d9e24470bc8673a76 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
	margin: 0;
	padding: 0;
}

header {
	width: 100%;
	background-color: black;
	color: white;
	h1 {
		font-size: 50px;
		height: 50px;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 10px;
	}
}

nav {
	/* layout */
	line-height: 1;
	width: 100%;
	ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	li {
		display: inline-block;
	}
	a {
		display: block;
	}

	/* pretty */
	background-color: Maroon;
	a {
		padding: 0.2em 1em;
		
		font-size: 40px;
		color: GoldenRod;
		text-decoration: none;

		&:hover, &:focus {
			background-color: white;
		}
		&:hover, &:visited {
			color: GoldenRod;
		}
		&:active {
			color: Black;
		}
	}

	form {
		padding: 0.2 1em;
		display: block;
		input {
			font-size: 25px;
			border: solid 1px #333333;
		}
		input[type="search"] {
			max-width: 10em;
		}
		input:first-child {
			border-top-left-radius: 4px;
			border-bottom-left-radius: 4px;
		}
		input:not(:last-child) {
			border-right: 0;
		}
		input:last-child {
			border-top-right-radius: 4px;
			border-bottom-right-radius: 4px;
		}
	}
}

body > article {
	#constructionBanner {
		height: 50px;
		background-color: #f89406;
	}

	#constructionMessage {
		text-align: center;
		padding: 12px;
	}

	#search {
		padding: 10px;
	}

	#sidebar {
		border: 1px solid black;
		padding: 5px;
		margin: 5px;
		float: right;
	}

	li {
		font-size: 14px;
	}

	.spacer {
		width: 50px;
		display: inline;
		padding: 0px 50px 0px 50px;
	}

	.tag {
		font-size: 11px;
		height: 13px;
		padding: 4px 7px 5px 7px;
		border-radius: 2px;
		text-align: center;
		text-decoration: none;
		color: white;
	}

	.FF { background: FireBrick; }
	.SS { background: SeaGreen; }
	.ES { background: DarkViolet; }
	.HB { background: DimGray; }
	.DM { background: DarkSlateGray; }
	.WP { background: GhostWhite; color: black; }
}