Skip to content

Commit 2445c06

Browse files
authored
Merge pull request #304 from DSACMS/Initial-mobile-responsiveness
Add initial responsiveness
2 parents 524b9c1 + 0b6e588 commit 2445c06

File tree

1 file changed

+82
-14
lines changed

1 file changed

+82
-14
lines changed

app/src/css/style.css

+82-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
@import "@uswds/uswds/dist/css/uswds.css";
22

3+
html, body {
4+
width: 100vw;
5+
margin: 0;
6+
padding: 0;
7+
overflow-x: hidden;
8+
}
9+
310
header {
411
display: flex;
512
flex-direction: column;
@@ -35,13 +42,13 @@ main {
3542

3643
h1 {
3744
color: #093f8e;
38-
font-size: 1.9em;
39-
margin: 3% 2% 0 2%;
45+
font-size: 1.5rem;
46+
margin: 1rem 0;
4047
}
4148

4249
.logo {
43-
width: 120px;
44-
height: 40px;
50+
width: 90px;
51+
height: auto;
4552
margin-right: 10px;
4653
}
4754

@@ -346,6 +353,7 @@ a.usa-link:visited {
346353
/* Projects */
347354
#content-container {
348355
margin-top: 5%;
356+
width: 95vw;
349357
}
350358

351359
.grid-container-projects {
@@ -363,6 +371,8 @@ a.usa-link:visited {
363371

364372
.dashboard-container {
365373
display: flex;
374+
flex-direction: column;
375+
align-items: center;
366376
}
367377

368378
.search-styling {
@@ -424,7 +434,7 @@ section:active {
424434

425435
.outer-project-template {
426436
height: fit-content;
427-
width: 60vw;
437+
width: 90vw;
428438
}
429439

430440
.container-project-template {
@@ -501,13 +511,15 @@ section:active {
501511

502512
.search-and-sort {
503513
display: flex;
504-
justify-content: space-evenly;
514+
flex-direction: column;
515+
align-items: center;
516+
margin: 10%;
505517
}
506518

507519
.sort-styling {
508520
display: flex;
509-
margin-top: -25px;
510-
justify-content: space-evenly;
521+
flex-direction: column;
522+
align-items: flex-start;
511523
}
512524

513525
.project-search {
@@ -566,7 +578,6 @@ section:active {
566578

567579
.summary-table {
568580
display: flex;
569-
width: 75%;
570581
flex-direction: column;
571582
align-items: stretch;
572583
}
@@ -597,10 +608,7 @@ section:active {
597608
.graph-box {
598609
display: flex;
599610
width: 100%;
600-
height: 600px;
601611
background-color: #E0EAF8;
602-
/* align-items: stretch;
603-
justify-content: center; */
604612
flex-direction: column;
605613
margin-bottom: 5%;
606614
border-radius: 30px;
@@ -618,11 +626,13 @@ section:active {
618626
}
619627

620628
.usa-button-group {
621-
margin: 2% 0 -15% 3%;;
629+
display: flex;
630+
flex-direction: row;
631+
margin: 2%
622632
}
623633

624634
embed {
625-
min-width: 500px;
635+
min-width: 315px;
626636
}
627637

628638
.usa-modal {
@@ -658,6 +668,7 @@ embed {
658668
border-radius: 30px;
659669
background-color: #0A3F8D;
660670
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
671+
width: fit-content;
661672
}
662673

663674
.modal-button:hover {
@@ -678,4 +689,61 @@ embed {
678689
iframe:focus, [href]:focus, [tabindex]:focus, [contentEditable=true]:focus {
679690
outline: none;
680691
outline-offset: 0rem;
692+
}
693+
694+
@media screen and (min-width: 768px) {
695+
h1 {
696+
font-size: 1.9em;
697+
margin: 3% 2% 0 2%;
698+
}
699+
700+
.logo {
701+
width: 120px;
702+
}
703+
704+
.dashboard-container {
705+
flex-direction: row;
706+
align-items: normal;
707+
}
708+
709+
.search-and-sort {
710+
justify-content: space-evenly;
711+
flex-direction: row;
712+
align-items: center;
713+
margin: 0;
714+
}
715+
716+
.sort-styling {
717+
flex-direction: row;
718+
margin-top: -25px;
719+
justify-content: space-evenly;
720+
}
721+
722+
#content-container {
723+
width: auto;
724+
}
725+
726+
.outer-project-template {
727+
width: 60vw;
728+
}
729+
730+
.summary-table {
731+
width: 75%;
732+
}
733+
734+
.usa-button-group {
735+
margin: 2% 0 -15% 3%;;
736+
}
737+
738+
embed {
739+
min-width: 500px;
740+
}
741+
742+
.graph-box {
743+
height: 600px;
744+
}
745+
}
746+
747+
@media screen and (min-width: 1024px) {
748+
681749
}

0 commit comments

Comments
 (0)