This commit is contained in:
mgabdev
2020-05-06 00:33:54 -04:00
parent 01bb440385
commit e1e26afe11
23 changed files with 501 additions and 292 deletions

View File

@@ -228,6 +228,7 @@ body {
.alignItemsCenter { align-items: center; }
.justifyContentSpaceBetween { justify-content: space-between; }
.justifyContentSpaceAround { justify-content: space-around; }
.justifyContentCenter { justify-content: center; }
.justifyContentEnd { justify-content: flex-end; }
@@ -390,6 +391,7 @@ body {
.top50PC { top: 50%; }
.bottom0 { bottom: 0; }
.bottom50PX { bottom: 50px; }
.bottomAuto { bottom: auto; }
.left0 { left: 0px; }
@@ -504,6 +506,10 @@ body {
.width240PX {
width: 230px;
}
.width1255PX {
width: 1140px;
}
}
@media (min-width: 1080px) and (max-width: 1160px) {
@@ -522,6 +528,10 @@ body {
.width240PX {
width: 210px;
}
.width1255PX {
width: 1060px;
}
}
@media (min-width: 992px) and (max-width: 1080px) {
@@ -540,6 +550,10 @@ body {
.width240PX {
width: 100px;
}
.width1255PX {
width: 950px;
}
}
@media (min-width: 0px) and (max-width: 992px) {
@@ -562,6 +576,10 @@ body {
.width240PX {
width: 0px;
}
.width1255PX {
width: 100%;
}
}
.textAlignLeft { text-align: left; }