Skip to content

Commit

Permalink
style: Space formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mzechmeister committed Oct 4, 2021
1 parent 7e580e8 commit 4b67649
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions csv_plotter.htm
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@

.coli, div[contenteditable=true]{
display: inline-block;
cursor: move;
padding: 0px 4px;
cursor: pointer;
}
Expand Down Expand Up @@ -138,7 +137,7 @@
}

body {
display:flex;
display: flex;
flex-direction: column;
}
.vis {
Expand All @@ -161,11 +160,10 @@

<body style="font-family: verdana; font-size: 70%; margin: 0">

<div style="position: fixed; left: 20px; top: 10px;; z-index: 10000">
<div style="position: fixed; left: 20px; top: 10px; z-index: 10000">
<button id="fullscreen" class="vis" onclick="if (document.fullscreenElement) {(document.exitFullscreen || document.webkitExitFullscreen).call(document)}
else {var elem = document.documentElement; (elem.requestFullscreen || elem.webkitRequestFullscreen).call(elem)}"><i class="fas fa-expand"></i><i class="fas fa-compress"></i></button>
<button id="expand" class="vis"
onclick="[document.getElementsByTagName('body')[0].style.height, graph.style.height] = this.children[0].classList.toggle('fas') ? ['','100vh'] : ['100vh', ''];"><i class="far fa-keyboard"></i></button>
<button id="expand" class="vis" onclick="[document.getElementsByTagName('body')[0].style.height, graph.style.height] = this.children[0].classList.toggle('fas') ? ['','100vh'] : ['100vh', ''];"><i class="far fa-keyboard"></i></button>
</div>

<div id="plotly-div"></div>
Expand Down

0 comments on commit 4b67649

Please sign in to comment.