Skip to content

Commit

Permalink
fixing various screen-size bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Feb 12, 2024
1 parent b174942 commit b434d38
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,18 @@

p {
font-family: 'Josefin Sans', sans-serif;
font-size: small;
font-weight: 300; /* Make it bold */
}

.container {
display: flex;
height: 100%;
width: 100%;
max-width: 1900px;
max-height: 1200px;
justify-content: center;
align-items: center;
}

/* Left column */
Expand All @@ -35,6 +40,7 @@
/* Middle column */
.mid-col {
flex: 0 0 50%; /* 50% width, does not grow or shrink */
height: 100%;
display: flex;
flex-direction: column;
text-align: center;
Expand Down Expand Up @@ -133,7 +139,7 @@
}

#pngImage {
max-width: 10vw;
max-width: 20vw;
max-height: 80vh;
}

Expand Down

0 comments on commit b434d38

Please sign in to comment.