ab-particles/scss/index.scss

38 lines
464 B
SCSS
Raw Normal View History

2020-04-08 02:56:45 -06:00
/* styles of index */
/*
import partials
*/
@import 'reset';
@import 'palette';
2020-04-08 02:56:45 -06:00
2020-04-08 08:26:58 -06:00
body {
color: var(--col-text);
}
h1 {
font-size: 5rem;
line-height: 5rem;
margin-bottom: 3rem;
}
p {
margin-bottom: 1.5rem;
}
.wrapper {
display: flex;
flex-direction: column;
padding: 2rem;
}
2020-04-08 04:29:13 -06:00
#particles {
2020-04-08 02:56:45 -06:00
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--col-bg-canvas);
2020-04-08 08:26:58 -06:00
z-index: -999;
2020-04-08 02:56:45 -06:00
}