working #34

Merged
derek merged 2 commits from working into main 2025-08-22 22:32:03 -07:00
5 changed files with 105 additions and 6 deletions
+61
View File
@@ -100,3 +100,64 @@
margin: 20px; margin: 20px;
color: var(--mistox-border-light); color: var(--mistox-border-light);
} }
@media (max-width: 900px) {
.top-bar {
display: block;
height: unset;
}
.top-bar-logo {
display: none;
}
.top-bar-buttons {
display: grid;
grid-template-columns: repeat(1, 1fr);
margin: 0;
width: 100%;
height: unset;
}
.flex-right {
grid-template-columns: repeat(2, 1fr) !important;
}
.nav-button {
width: 100%;
margin: 0;
margin-bottom: 10px;
}
.bottom-bar {
display: block;
height: unset;
}
.bottom-bar-buttons {
display: grid;
grid-template-columns: repeat(1, 1fr);
margin: 0;
width: 100%;
height: unset;
}
.nav-button-bottom{
width: 100%;
}
.bottom-bar-logo {
display: none;
}
.mistox-logo {
display: block;
}
.bottom-bar-padding {
width: 100%;
text-align: center;
}
}
+1 -1
View File
@@ -38,7 +38,7 @@
<a class="bottom-bar-logo" href="https://mistox.com"> <a class="bottom-bar-logo" href="https://mistox.com">
<img src="img/mistox-logo.png" /> <img src="img/mistox-logo.png" />
</a> </a>
<div class="bottom-bar-buttons flex-right bottom-bar-float"> <div class="bottom-bar-buttons flex-right mistox-logo bottom-bar-float">
<div class="bottom-bar-padding"> <div class="bottom-bar-padding">
<span>Mistox LLC</span> <span>Mistox LLC</span>
</div> </div>
@@ -8,7 +8,7 @@
} }
.center-text h1 { .center-text h1 {
font-size: 100px; font-size: 60px;
margin: 20px 0; margin: 20px 0;
color: var(--mistox-text); color: var(--mistox-text);
} }
@@ -79,3 +79,21 @@ hr {
.border { .border {
border-bottom: solid 1px #000; border-bottom: solid 1px #000;
} }
@media (max-width: 900px) {
.content-frame {
display: grid;
grid-template-columns: repeat(1, 1fr);
grid-auto-flow: unset;
}
.floating-frame {
width: calc(100% - 60px);
margin: 10px 10px;
}
.solution-frame {
width: calc(100% - 20px);
margin: 20px 10px;
}
}
@@ -22,6 +22,7 @@ button {
.tile-frame { .tile-frame {
display: grid; display: grid;
grid-auto-flow: row;
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr);
column-gap: 20px; column-gap: 20px;
padding: 20px; padding: 20px;
@@ -85,3 +86,22 @@ button {
border-color: var(--Mistox-Black); border-color: var(--Mistox-Black);
color: var(--Mistox-Black); color: var(--Mistox-Black);
} }
@media (max-width: 1920px) {
.tile-frame{
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 1350px) {
.tile-frame{
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 900px) {
.tile-frame{
grid-template-columns: repeat(1, 1fr);
grid-auto-flow: unset;
}
}
@@ -1,6 +1,6 @@
<!-- Avaliable Jobs --> <!-- Avaliable Jobs -->
<div class="tile-frame">
@for (cur of JobListingPage; track cur.id){ @for (cur of JobListingPage; track cur.id){
<div class="tile-frame">
<div class="tile"> <div class="tile">
<div class="tile-title"> <div class="tile-title">
<h1>{{ cur.title }}</h1> <h1>{{ cur.title }}</h1>
@@ -20,5 +20,5 @@
<button [routerLink]="['/jobs/viewer']" [queryParams]="{ JobID: cur.id }" >VIEW LISTING</button> <button [routerLink]="['/jobs/viewer']" [queryParams]="{ JobID: cur.id }" >VIEW LISTING</button>
</div> </div>
</div> </div>
</div>
} }
</div>