diff --git a/src/lib/ContactForm.svelte b/src/lib/ContactForm.svelte index 7c03315..0f8545a 100644 --- a/src/lib/ContactForm.svelte +++ b/src/lib/ContactForm.svelte @@ -1,83 +1,16 @@ -
- - + \ No newline at end of file diff --git a/src/lib/Form/Form.svelte b/src/lib/Form/Form.svelte new file mode 100644 index 0000000..d7644e2 --- /dev/null +++ b/src/lib/Form/Form.svelte @@ -0,0 +1,50 @@ + + + + + \ No newline at end of file diff --git a/src/lib/Form/Meta.svelte b/src/lib/Form/Meta.svelte new file mode 100644 index 0000000..4ec6778 --- /dev/null +++ b/src/lib/Form/Meta.svelte @@ -0,0 +1,47 @@ + + + + + \ No newline at end of file diff --git a/src/lib/Form/TextArea.svelte b/src/lib/Form/TextArea.svelte new file mode 100644 index 0000000..1416f5d --- /dev/null +++ b/src/lib/Form/TextArea.svelte @@ -0,0 +1,15 @@ + + + \ No newline at end of file diff --git a/src/lib/Form/index.ts b/src/lib/Form/index.ts index 83ac350..883e995 100644 --- a/src/lib/Form/index.ts +++ b/src/lib/Form/index.ts @@ -1,2 +1,5 @@ export { default as Note } from "./Note.svelte"; -export { default as Captcha } from "./Captcha.svelte"; \ No newline at end of file +export { default as Captcha } from "./Captcha.svelte"; +export { default as Form } from "./Form.svelte"; +export { default as Meta } from "./Meta.svelte"; +export { default as TextArea } from "./TextArea.svelte"; \ No newline at end of file diff --git a/src/lib/PubnixForm.svelte b/src/lib/PubnixForm.svelte index b95345f..d314dc4 100644 --- a/src/lib/PubnixForm.svelte +++ b/src/lib/PubnixForm.svelte @@ -1,27 +1,14 @@ - - - \ No newline at end of file + \ No newline at end of file diff --git a/src/lib/app.css b/src/lib/app.css index 12bbde8..4861aab 100644 --- a/src/lib/app.css +++ b/src/lib/app.css @@ -59,22 +59,4 @@ a { a:hover { filter: brightness(125%); -} - -.form-button { - background-color: var(--secondary); - border: none; - border-radius: 10px; - padding: 0.5rem; - cursor: pointer; - color: var(--text); - font-family: var(--font-primary); - text-decoration: none; -} - -.form-button:not(select):hover { - background-color: var(--accent); - text-decoration: none; - transition: all 0.5s; - color: var(--secondary); } \ No newline at end of file