Skip to content

Commit

Permalink
Fix map container sizing, adjust code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
WUOTE committed Mar 23, 2024
1 parent 1164df4 commit 00df676
Show file tree
Hide file tree
Showing 3 changed files with 822 additions and 533 deletions.
2 changes: 1 addition & 1 deletion public/css/overlay-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

.overlay-highlight:hover {
border: red dashed 1px;
}
}
60 changes: 30 additions & 30 deletions public/css/style.css
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
body,
html {
margin: 0px;
padding: 0px;
background-color: black;
overflow: hidden;
margin: 0px;
padding: 0px;
background-color: black;
overflow: hidden;
}

#osContainer {
width: 95vw;
height: 95vh;
position: fixed;
width: 100vw;
height: 100vh;
position: fixed;
}

.menu img {
float: left;
width: 62px;
height: 60px;
float: left;
width: 62px;
height: 60px;
}

.menu h1 {
position: relative;
top: 18px;
left: 10px;
color: white;
position: relative;
top: 18px;
left: 10px;
color: white;
}

:root {
font-family: Inter, sans-serif;
font-feature-settings: "liga" 1, "calt" 1, "dlig", "ss01", "ss02";
/* fix for Chrome */
font-family: Inter, sans-serif;
font-feature-settings: "liga" 1, "calt" 1, "dlig", "ss01", "ss02";
/* fix for Chrome */
}

@supports (font-variation-settings: normal) {
:root {
font-family: InterVariable, sans-serif;
}
:root {
font-family: InterVariable, sans-serif;
}
}

.coordinate {
position: absolute;
pointer-events: none;
color: white;
font-family: Inter, sans-serif;
font-feature-settings: "tnum", "zero", "cv09", "cv02", "cv03", "cv04";
font-weight: 400;
position: absolute;
pointer-events: none;
color: white;
font-family: Inter, sans-serif;
font-feature-settings: "tnum", "zero", "cv09", "cv02", "cv03", "cv04";
font-weight: 400;
}

.coordinate-content {
position: relative;
top: 2em;
position: relative;
top: 2em;
}
#shareButton {
margin-left: auto;
margin-right: 2vw;
margin-left: auto;
margin-right: 2vw;
}
Loading

0 comments on commit 00df676

Please sign in to comment.