Skip to content

Commit

Permalink
feat: fixing np ultra logo image scaling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Feb 7, 2024
1 parent 3509824 commit f92404c
Showing 1 changed file with 30 additions and 7 deletions.
37 changes: 30 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
margin-top: 20px;
margin-bottom: 20px;
width:100%;

background-color: #ffffff00;
}

#unity-container {
Expand All @@ -82,7 +82,8 @@
}

#pngImage, #probeImage {
width: 100%;
height: 100%;
max-height: 100vh;
}

#gifImage {
Expand Down Expand Up @@ -112,6 +113,11 @@
cursor: pointer;
}

#areaContainer {
max-width: 60%;
margin-left: 20%;
}

.buttonContainer {
position: absolute;
bottom: 0;
Expand Down Expand Up @@ -183,8 +189,12 @@

<!-- Middle column -->
<div class="mid-col">
<div id="areas" class="mid-col-top-row">
<!-- Content for middle column top row goes here -->
<div class="mid-col-top-row">
<div id="areaContainer">
<div id="areas">

</div>
</div>
</div>
<div class="mid-col-mid-row">
<div id="unity-container">
Expand Down Expand Up @@ -236,9 +246,22 @@
'DG', 'cc', 'VPM', 'VPL', 'PO', 'CP', 'ACB', 'MB'
];

const buttonColors = ['#1f9d5a','#248a5e', '#08858c', '#6acbba', '#8ada87', '#7ed04b', '#4fc244',
'#7ed04b', '#7ed04b', '#ff8084', '#ff8084', '#ff909f', '#98d6f9', '#80cdf8', '#ff64ff', '#ff64ff'
]
const buttonColors = ['#1f9d5a',
'#248a5e',
'#08858c',
'#6acbba',
'#8ada87',
'#7ed04b',
'#4fc244',
'#7ed04b',
'#7ed04b',
'#cccccc',
'#ff8084',
'#ff8084',
'#ff909f',
'#98d6f9',
'#80cdf8',
'#ff64ff']

let buttons = []

Expand Down

0 comments on commit f92404c

Please sign in to comment.