summaryrefslogtreecommitdiff
path: root/fig-frontend/client/src/components/header.ts
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-03-01 18:39:11 -0500
committerLLLL Colonq <llll@colonq>2024-03-01 18:39:11 -0500
commit88e2726fc1fc6cec2b9e63526ce4c0a1a04a2e98 (patch)
tree94fd56c8c02e422a54d69aa7dec798b7a55d6a2d /fig-frontend/client/src/components/header.ts
parent4a23754fc6515c947e0bbac38cd0e558b701fe2f (diff)
Add new frontend
Diffstat (limited to 'fig-frontend/client/src/components/header.ts')
-rw-r--r--fig-frontend/client/src/components/header.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/fig-frontend/client/src/components/header.ts b/fig-frontend/client/src/components/header.ts
deleted file mode 100644
index c4c709f..0000000
--- a/fig-frontend/client/src/components/header.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-import { html, css, LitElement } from "lit";
-import { customElement } from "lit/decorators.js";
-
-@customElement("fig-header")
-export class Header extends LitElement {
- static styles = css`
-#header {
- position: absolute;
- text-align: center;
- border-radius: 100px;
- border-style: solid;
- border-color: silver;
- border-width: 5px;
- background: linear-gradient(0deg, rgba(89,89,89,1) 35%, rgba(158,158,158,1) 100%);
- top: 1em;
- left: 33vw;
- width: 33vw;
-}
-#header:hover {
- filter: brightness(150%);
-}
-h1 {
- color: #b5a642;
- font-family: "Rubik Maps";
-}
-`;
- render() {
- return html`
-<div id="header">
- <h1>"The JunkYard"</h1>
-</div>
-`;
- }
-}