|
|
|
@ -7,10 +7,12 @@ $main-width: 720px;
|
|
|
|
|
body {
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background: url(/body-bg.svg) top center no-repeat #d22d40;
|
|
|
|
|
background-size:100% auto;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 1.3em;
|
|
|
|
|
background: url(/body-bg.svg) #d22d40;
|
|
|
|
|
background-position: top center;
|
|
|
|
|
background-size: 100% auto;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
|
|
a { text-decoration: none; }
|
|
|
|
|
}
|
|
|
|
@ -47,33 +49,37 @@ main {
|
|
|
|
|
h2 { font-size: 3em; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main#index {
|
|
|
|
|
max-width: $header-width;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
background: url(/index-bg.png) center center no-repeat;
|
|
|
|
|
background-size: contain;
|
|
|
|
|
padding: 2em 1em;
|
|
|
|
|
body.index {
|
|
|
|
|
background-image: url(/index-bg.png), url(/body-bg.svg);
|
|
|
|
|
background-position: center center, top center;
|
|
|
|
|
background-size: 30em auto, 100% auto;
|
|
|
|
|
|
|
|
|
|
section, aside { max-width: 35%; }
|
|
|
|
|
section{ text-shadow: 0px 3px 8px rgba(0, 0, 0, .35); }
|
|
|
|
|
aside {
|
|
|
|
|
main {
|
|
|
|
|
max-width: $header-width;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 2em 1em;
|
|
|
|
|
|
|
|
|
|
section, aside { max-width: 35%; }
|
|
|
|
|
section{ text-shadow: 0px 3px 8px rgba(0, 0, 0, .35); }
|
|
|
|
|
aside {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-align: center;
|
|
|
|
|
border: 2px solid #fff;
|
|
|
|
|
border-radius: .8em;
|
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
|
padding: .6em 1.5em;
|
|
|
|
|
color: #fff;
|
|
|
|
|
a {
|
|
|
|
|
text-align: center;
|
|
|
|
|
border: 2px solid #fff;
|
|
|
|
|
border-radius: .8em;
|
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
|
padding: .6em 1.5em;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #b52637;
|
|
|
|
|
&:hover {
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #b52637;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|