web: EntryProposal form implementation.

This commit is contained in:
2021-10-26 01:46:59 -05:00
parent e055bee0f3
commit 3675c6054a
32 changed files with 705 additions and 203 deletions

View File

@ -0,0 +1,20 @@
$maxMobileWidth: 640px;
$maxTabletWidth: 1079px;
$ultrawideMinWidth: 1600px;
// --- mobMaxW --- tabMaxW --------------- ultrawideMinW
// mobile | tablet | desktop | ultrawide
@mixin forSize($size) {
@if $size == mobile {
@media screen and (max-width: $maxMobileWidth) { @content; } }
@else if $size == tablet {
@media screen and (min-width: $maxMobileWidth + 1) and (max-width: $maxTabletWidth) { @content; } }
@else if $size == desktop {
@media screen and (min-width: $maxTabletWidth + 1) and (max-width: $ultrawideMinWidth - 1) { @content; } }
@else if $size == ultrawide {
@media screen and (min-width: $ultrawideMinWidth) { @content; } }
@else if $size == notMobile {
@media screen and (min-width: $maxMobileWidth + 1) { @content; } }
}