42 lines
772 B
CSS
42 lines
772 B
CSS
|
|
/*---------------------------------------------*/
|
|
/*MAIN*/
|
|
body main {
|
|
padding: calc(var(--gap-unit) / 2);
|
|
width: 600px;
|
|
min-height: calc(100vh - 1px - var(--nav-height) - var(--footer-height));
|
|
}
|
|
body main > * {
|
|
margin: var(--gap-unit) 0px;
|
|
}
|
|
body main h1 {
|
|
padding: 70px 0px;
|
|
border-bottom: 1px solid var(--color-lines-1);
|
|
}
|
|
body main h2 {
|
|
/* padding top of 40px to let the space for the nav height when using anchor*/
|
|
padding: 40px 0px 10px 0px;
|
|
border-bottom: 1px solid var(--color-lines-1);
|
|
}
|
|
body main h3 {
|
|
padding: 50px 0px 0px 0px;
|
|
/*
|
|
border-bottom: 1px solid var(--color-lines-1);
|
|
margin-right: auto;
|
|
*/
|
|
}
|
|
body main h4 {
|
|
padding: 40px 0px 0px 0px;
|
|
}
|
|
body main h5 {
|
|
padding: 0px;
|
|
}
|
|
body main h6 {
|
|
padding: 0px;
|
|
}
|
|
|
|
main iframe {
|
|
height: 40px;
|
|
}
|
|
|