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
|
:root{
--color: #6cb3de;
--color-secondary: #366d9d;
--line-height: 110%;
}
@font-face {
font-family: "ZachsSharpie";
src: url("ZachsSharpie.ttf") format("truetype");
}
h1{
font-family:"ZachsSharpie";
font-size: 5em;
filter: drop-shadow(0 0 7px white);
}
header img {
max-width: 300px;
}
section aside img
{
width: 100%;
}
/* Overrides for mvp.css */
nav {margin-bottom: initial;}
nav ul { margin: initial;}
body { padding: initial;}
footer,header,main{padding: 0; margin: 1rem;}
h1, h2, h3, h4, h5, h6 { margin: 1rem 0;}
a b, a em, a i, a strong, button {margin: .5rem;}
|