From 0d07e632916903b1fa1f47bba883c15868f37ea3 Mon Sep 17 00:00:00 2001 From: Kai Gunger Date: Mon, 17 Aug 2026 22:06:08 -0400 Subject: Initial commit --- README.md | 7 +++++++ assets/comxii.svg | 30 +++++++++++++++++++++++++++++ comic/index.html | 11 +++++++++++ comic/viewer.html | 40 ++++++++++++++++++++++++++++++++++++++ create/edit.html | 11 +++++++++++ create/index.html | 11 +++++++++++ index.html | 38 +++++++++++++++++++++++++++++++++++++ login.html | 11 +++++++++++ scripts/viewer.js | 0 search/comic.html | 11 +++++++++++ search/index.html | 11 +++++++++++ search/list.html | 11 +++++++++++ search/user.html | 11 +++++++++++ styles/base.css | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ user/index.html | 11 +++++++++++ user/profile.html | 11 +++++++++++ 16 files changed, 282 insertions(+) create mode 100644 README.md create mode 100644 assets/comxii.svg create mode 100644 comic/index.html create mode 100644 comic/viewer.html create mode 100644 create/edit.html create mode 100644 create/index.html create mode 100644 index.html create mode 100644 login.html create mode 100644 scripts/viewer.js create mode 100644 search/comic.html create mode 100644 search/index.html create mode 100644 search/list.html create mode 100644 search/user.html create mode 100644 styles/base.css create mode 100644 user/index.html create mode 100644 user/profile.html diff --git a/README.md b/README.md new file mode 100644 index 0000000..61eb2fe --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# ComXII - UI + +This is the front end code for ComXII, a comic/multimedia hosting platform written in basic HTML, JS (with JSDoc), and CSS. + +`index.html` - Main page +`scripts` - JS files +`styles` - CSS files \ No newline at end of file diff --git a/assets/comxii.svg b/assets/comxii.svg new file mode 100644 index 0000000..536e691 --- /dev/null +++ b/assets/comxii.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + diff --git a/comic/index.html b/comic/index.html new file mode 100644 index 0000000..6d5647b --- /dev/null +++ b/comic/index.html @@ -0,0 +1,11 @@ + + + + + + Comic Index + + + + + \ No newline at end of file diff --git a/comic/viewer.html b/comic/viewer.html new file mode 100644 index 0000000..33d81f9 --- /dev/null +++ b/comic/viewer.html @@ -0,0 +1,40 @@ + + + + + + Comic Viewer + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/create/edit.html b/create/edit.html new file mode 100644 index 0000000..6e66ae8 --- /dev/null +++ b/create/edit.html @@ -0,0 +1,11 @@ + + + + + + Edit Comic + + + + + \ No newline at end of file diff --git a/create/index.html b/create/index.html new file mode 100644 index 0000000..8af2da8 --- /dev/null +++ b/create/index.html @@ -0,0 +1,11 @@ + + + + + + Publish New Comic + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..9d7e3bf --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ + + + + + + ComXII + + + + + + + + + + + + + \ No newline at end of file diff --git a/login.html b/login.html new file mode 100644 index 0000000..3d4dca1 --- /dev/null +++ b/login.html @@ -0,0 +1,11 @@ + + + + + + Login + + + + + \ No newline at end of file diff --git a/scripts/viewer.js b/scripts/viewer.js new file mode 100644 index 0000000..e69de29 diff --git a/search/comic.html b/search/comic.html new file mode 100644 index 0000000..db8748f --- /dev/null +++ b/search/comic.html @@ -0,0 +1,11 @@ + + + + + + Search - Comic + + + + + \ No newline at end of file diff --git a/search/index.html b/search/index.html new file mode 100644 index 0000000..c1992b5 --- /dev/null +++ b/search/index.html @@ -0,0 +1,11 @@ + + + + + + Search + + + + + \ No newline at end of file diff --git a/search/list.html b/search/list.html new file mode 100644 index 0000000..ace8791 --- /dev/null +++ b/search/list.html @@ -0,0 +1,11 @@ + + + + + + List + + + + + \ No newline at end of file diff --git a/search/user.html b/search/user.html new file mode 100644 index 0000000..587cf9b --- /dev/null +++ b/search/user.html @@ -0,0 +1,11 @@ + + + + + + Search - User + + + + + \ No newline at end of file diff --git a/styles/base.css b/styles/base.css new file mode 100644 index 0000000..338b19f --- /dev/null +++ b/styles/base.css @@ -0,0 +1,57 @@ +@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); + +html, body { + display: block; + padding: 0; + margin: 0; + min-width:100vw; + min-height:100vh; +} + +* { + font-family: "Nunito", sans-serif; + font-optical-sizing: auto; + font-weight: 400; + font-style: normal; + + box-sizing: border-box; +} + + + +nav { + display: flex; + background-color: #9f3050; + + height: 64px; +} + +#logo { + height: 100%; +} + + + +content { + display:flex; + width: 100vw; + min-height: calc(100vh - 128px); + padding: 10px 10px 10px 10px; + + background-color: #ffecdc; +} + + + +footer { + display: flex; + + width:100vw; + height:64px; + bottom:0; + + padding: 10px; + + background-color: #777; + color: #eee; +} \ No newline at end of file diff --git a/user/index.html b/user/index.html new file mode 100644 index 0000000..e8ef4a9 --- /dev/null +++ b/user/index.html @@ -0,0 +1,11 @@ + + + + + + My Profile + + + + + \ No newline at end of file diff --git a/user/profile.html b/user/profile.html new file mode 100644 index 0000000..015db48 --- /dev/null +++ b/user/profile.html @@ -0,0 +1,11 @@ + + + + + + User Profile + + + + + \ No newline at end of file -- cgit v1.2.3