An easy-to-use platform for EEG experimentation in the classroom
at main 50 lines 843 B view raw
1<!doctype html> 2<html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>Viewer</title> 6 <style> 7 body { 8 position: relative; 9 color: #484848; 10 width: 95vw; 11 height: 95vh; 12 background-color: rgba(255, 255, 255, 0); 13 font-family: 14 Helvetica Neue, 15 serif; 16 } 17 18 #graph { 19 width: 100%; 20 height: 100%; 21 padding-left: 20px; 22 } 23 24 .axis line, 25 .axis path, 26 .axis { 27 stroke: none; 28 fill: none; 29 } 30 31 .axis text { 32 font-size: 14px; 33 fill: #484848; 34 stroke: none; 35 } 36 37 .legend { 38 font-size: 14px; 39 } 40 41 .line { 42 fill: none; 43 } 44 </style> 45 </head> 46 <body> 47 <svg id="graph" /> 48 <script type="module" src="./viewer.ts"></script> 49 </body> 50</html>