Skip to content

Commit

Permalink
Added CSS, some code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfe committed Feb 3, 2023
1 parent c23df26 commit 38ef5fe
Show file tree
Hide file tree
Showing 9 changed files with 2,615 additions and 150 deletions.
18 changes: 18 additions & 0 deletions emdr/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"no-console": 1, // Means warning
"prettier/prettier": 2 // Means error
}
}
19 changes: 11 additions & 8 deletions emdr/index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="cal">
<center>
<div class="container">
<center>
<h1>Remote EMDR</h1>
<svg id="cont" height="400" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<svg id="circlebox" height="400" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
</svg>
</center>
</div>
</center>

<div id="menu">
<button id="startstop">Start</button>
Speed: <input id="speed" type="number" min="2" max="20" />
<div id="menu" style="display: flex; flex-direction: row; justify-content: center; align-items: center;">
<button id="startstop">Start</button>
<span style="padding: 1em">
Speed: <input id="speed" type="number" min="2" max="20" value="10"/>
</span>
</div>
</div>
</body>
</html>
Loading

0 comments on commit 38ef5fe

Please sign in to comment.