Front-page work, RT work

This commit is contained in:
Madison Scott-Clary
2019-11-02 15:19:29 -07:00
parent d48768b361
commit c283230b4b
17 changed files with 941 additions and 6 deletions

View File

@ -193,6 +193,7 @@ pre {
//@import "parts/animate";
@import "parts/misc";
@import "parts/front-flex";
/* = = = = = = = = = = Media = = = = = = = = = = */
@import "media";

View File

@ -0,0 +1,21 @@
.front-flex {
display: flex;
flex-wrap: wrap;
align-items: stretch;
.hero {
display: flex;
background-color: rgba(255, 255, 255, 0.1);
padding: 1rem;
}
.small {
flex: 1 1 38%;
padding: 0.5rem;
}
.large {
flex: 1 1 61%;
padding: 0.5rem;
}
}