aboutsummaryrefslogtreecommitdiff
path: root/static/pages/main/index.css
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-05-20 10:16:50 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-05-20 10:16:50 +0200
commit44445734ba4a0f05564f808c2fd34a7f23c6fafb (patch)
tree3bd22add718620cbf931286f55137bcc666100be /static/pages/main/index.css
parent95ae9f15e1db335a7f8358d811ea37e2c89dd10f (diff)
Let's do a rewrite!
Created project structure and changed `build.zig` and added licence.
Diffstat (limited to 'static/pages/main/index.css')
-rw-r--r--static/pages/main/index.css70
1 files changed, 0 insertions, 70 deletions
diff --git a/static/pages/main/index.css b/static/pages/main/index.css
deleted file mode 100644
index 21d5022..0000000
--- a/static/pages/main/index.css
+++ /dev/null
@@ -1,70 +0,0 @@
-
-:host {
- display: grid;
- height: 100%;
- width: 100%;
- background: var(--page-background);
-}
-
-#bar {
- position: fixed;
- bottom: 5px;
- left: 5px;
- right: 5px;
- background: #fff9;
- box-shadow: #223223aa 1px 1px 4px;
- display: grid;
- grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
- height: 50px;
- backdrop-filter: blur(10px);
- border-radius: var(--border-radius);
- transition: bottom 0.2s ease;
- max-width: 600px;
- margin: 0 auto;
-}
-
-#bar.hidden {
- bottom: -200px;
-}
-
-.menu-button {
- color: var(--fg-disabled);
- width: 18px;
- height: 18px;
- border-radius: 100%;
- margin: auto;
- cursor: pointer;
- user-select: none;
- align-content: center;
- text-align: center;
-}
-
-.menu-button.add {
- width: 60px;
- height: 60px;
- margin-top: -20px;
- background: var(--primary);
- color: var(--card-background);
- font-weight: bold;
- font-size: 2em;
-}
-
-.menu-button.add .icon {
- width: 30px;
- height: 30px;
- display: grid;
- margin: auto;
-}
-
-.menu-button.add .icon .bi-house-fill {
- width: 20px;
- height: 20px;
- margin: auto;
-}
-
-.menu-button .icon {
- width: 100%;
- height: 100%;
- display: grid;
- margin: auto;
-}