2020-04-08 02:56:45 -06:00
|
|
|
/* styles of index */
|
|
|
|
|
|
|
|
/*
|
|
|
|
import partials
|
|
|
|
*/
|
|
|
|
@import 'reset';
|
2020-04-08 04:35:40 -06:00
|
|
|
@import 'palette';
|
2020-04-08 02:56:45 -06:00
|
|
|
|
2020-04-08 08:26:58 -06:00
|
|
|
body {
|
2020-04-10 04:57:50 -06:00
|
|
|
background-color: var(--col-bg);
|
2020-04-10 09:34:59 -06:00
|
|
|
color: var(--col-text);
|
2020-04-10 15:51:57 -06:00
|
|
|
font-family: 'Montserrat', sans-serif;
|
|
|
|
font-size: 1.6rem;
|
|
|
|
line-height: 1.6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
display: flex;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 1.85rem;
|
2020-04-08 08:26:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 5rem;
|
|
|
|
line-height: 5rem;
|
2020-04-10 15:51:57 -06:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 3rem;
|
|
|
|
line-height: 3rem;
|
|
|
|
margin-bottom: 5rem;
|
2020-04-08 08:26:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2020-04-10 09:29:31 -06:00
|
|
|
a {
|
|
|
|
color: inherit;
|
2020-04-10 15:51:57 -06:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: underline;
|
|
|
|
transition: all 0.5s ease;
|
2020-04-10 09:29:31 -06:00
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
2020-04-10 15:51:57 -06:00
|
|
|
color: var(--col-link);
|
2020-04-10 09:29:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-08 04:29:13 -06:00
|
|
|
#particles {
|
2020-04-10 09:34:59 -06:00
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
2020-04-08 02:56:45 -06:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2020-04-08 08:26:58 -06:00
|
|
|
z-index: -999;
|
2020-04-08 02:56:45 -06:00
|
|
|
}
|
2020-04-10 15:51:57 -06:00
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
min-height: 100%;
|
|
|
|
padding: 2rem;
|
|
|
|
}
|
|
|
|
.spacer {
|
|
|
|
flex: 1;
|
|
|
|
}
|