diff options
Diffstat (limited to 'src/module.js')
-rw-r--r-- | src/module.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/module.js b/src/module.js new file mode 100644 index 0000000..4378d0d --- /dev/null +++ b/src/module.js @@ -0,0 +1,18 @@ +const initialize = (url) => { + let p = document.createElement("p"); + p.textContent = "Hello Vim Vixen"; + p.style.position = 'fixed'; + p.style.right = '0'; + p.style.bottom = '0'; + p.style.padding = '0rem .5rem'; + p.style.margin = '0'; + p.style.backgroundColor = 'lightgray'; + p.style.border = 'gray'; + p.style.boxShadow = '0 0 2px gray inset'; + p.style.borderRadius = '3px'; + p.style.fontFamily = 'monospace'; + + document.body.append(p) +} + +export { initialize }; |