all repos — aaoth.xyz @ ab2853d5e8fdb049684b62c164cea271d44d7066

aaoth.xyz website

_sass/main.scss (view raw)

 1$main-blue: #397eaf;
 2$main-grey: #e1e1e1;
 3$border-sep: 5px solid $main-grey;
 4$title-font: sans-serif;
 5$body-font: sans-serif;
 6
 7html {
 8	background: white;
 9}
10
11body {
12	max-width: fit-content;
13	margin: 20px auto 0 auto;
14	font: 100% $body-font;
15}
16
17a {
18	color: #707070;
19	text-decoration: none;
20}
21a:hover {
22	color: #999;
23}
24
25nav {
26	display: flex;
27	font: 400 1.5em $title-font;
28	letter-spacing: -1.2px;
29	
30	ul {
31		display: inline-flex;
32		width: 430px;
33		height: 32px;
34		margin: 0;
35		padding: 50px 30px 0 0;
36		flex-direction: row;
37		justify-content: space-between;
38		list-style-type: none;
39		border-bottom: 5px solid $main-grey;
40	}
41}
42
43h1, h2, h3, h4, h5, h6 {
44	margin: 0;
45	font: 200% $title-font;
46	color: $main-blue;
47}
48
49footer {
50	border-top: $border-sep;
51	text-align: center;
52	font: 75% $body-font;
53	p {
54		margin: 0;
55	}
56}