52 lines
611 B
SCSS
52 lines
611 B
SCSS
|
|
@import "variables.scss";
|
||
|
|
|
||
|
|
html {
|
||
|
|
font-family: "Times New Roman";
|
||
|
|
font-size: 11pt;
|
||
|
|
}
|
||
|
|
|
||
|
|
nav, h1, .warning {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
font-size: 18pt;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.halfpage {
|
||
|
|
width: 5.5in;
|
||
|
|
height: 8.5in;
|
||
|
|
padding: 0.25in;
|
||
|
|
box-sizing: border-box;
|
||
|
|
border: $standard-border;
|
||
|
|
flex-shrink: 0;
|
||
|
|
margin: 0.5in;
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
p {
|
||
|
|
margin-top: 0;
|
||
|
|
margin-bottom: 0.1in;
|
||
|
|
}
|
||
|
|
|
||
|
|
main.container {
|
||
|
|
display: flex;
|
||
|
|
max-width: none;
|
||
|
|
left: 0;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: flex-start;
|
||
|
|
}
|
||
|
|
|
||
|
|
hr {
|
||
|
|
padding-top: 0.1in;
|
||
|
|
padding-bottom: 0.1in;
|
||
|
|
line-height: 0.1in;
|
||
|
|
}
|