diff --git a/components.js b/components.js
index 5aee078..fe542c3 100644
--- a/components.js
+++ b/components.js
@@ -1567,4 +1567,124 @@ class ThemeToggle extends HTMLElement {
}
}
-window.customElements.define('theme-toggle', ThemeToggle);
\ No newline at end of file
+window.customElements.define('theme-toggle', ThemeToggle);
+
+const smCopy = document.createElement('template')
+smCopy.innerHTML = `
+
+
+
+`;
+customElements.define('sm-copy',
+ class extends HTMLElement {
+ constructor() {
+ super()
+ this.attachShadow({
+ mode: 'open'
+ }).append(smCopy.content.cloneNode(true))
+
+ this.copyContent = this.shadowRoot.querySelector('.copy-content')
+ this.copyButton = this.shadowRoot.querySelector('.copy-button')
+
+ this.copy = this.copy.bind(this)
+ }
+ static get observedAttributes() {
+ return ['value']
+ }
+ set value(val) {
+ this.setAttribute('value', val)
+ }
+ get value() {
+ return this.getAttribute('value')
+ }
+ fireEvent() {
+ this.dispatchEvent(
+ new CustomEvent('copy', {
+ composed: true,
+ bubbles: true,
+ cancelable: true,
+ })
+ )
+ }
+ copy() {
+ navigator.clipboard.writeText(this.copyContent.textContent)
+ .then(res => this.fireEvent())
+ .catch(err => console.error(err))
+ }
+ connectedCallback() {
+ this.copyButton.addEventListener('click', this.copy)
+ }
+ attributeChangedCallback(name, oldValue, newValue) {
+ if (name === 'value') {
+ this.copyContent.textContent = newValue
+ }
+ }
+ disconnectedCallback() {
+ this.copyButton.removeEventListener('click', this.copy)
+ }
+ })
\ No newline at end of file
diff --git a/css/main.css b/css/main.css
index 7f31619..09941e5 100644
--- a/css/main.css
+++ b/css/main.css
@@ -36,7 +36,7 @@ body[data-theme=dark],
body[data-theme=dark] * {
--accent-color: #ff7d7d;
--accent-color--light: rgba(236, 184, 184, 0.1);
- --text-color: 240, 240, 240;
+ --text-color: 230, 230, 230;
--text-color-light: 170, 170, 170;
--background-color: 10, 10, 10;
--foreground-color: rgb(20, 20, 20);
@@ -104,12 +104,6 @@ button:disabled {
opacity: 0.5;
}
-a.button {
- padding: 0.6rem 1.2rem;
- border-radius: 0.3rem;
- background-color: rgba(var(--text-color), 0.06);
-}
-
a:-webkit-any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid;
}
@@ -366,14 +360,42 @@ ul {
.icon-button {
padding: 0.6rem;
- border-radius: 0.5rem;
+ border-radius: 0.8rem;
background-color: var(--accent-color--light);
}
.icon-button .icon {
fill: var(--accent-color);
}
+#confirmation_popup,
+#prompt_popup {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+}
+#confirmation_popup h4,
+#prompt_popup h4 {
+ font-weight: 500;
+ margin-bottom: 0.5rem;
+}
+#confirmation_popup sm-button,
+#prompt_popup sm-button {
+ margin: 0;
+}
+#confirmation_popup .flex,
+#prompt_popup .flex {
+ padding: 0;
+ margin-top: 1rem;
+}
+#confirmation_popup .flex sm-button:first-of-type,
+#prompt_popup .flex sm-button:first-of-type {
+ margin-right: 0.6rem;
+ margin-left: auto;
+}
+
button:active,
+.button:active,
.nav-item:active {
-webkit-transform: scale(0.9);
transform: scale(0.9);
@@ -424,6 +446,12 @@ details[open] > summary .icon {
transform: rotate(180deg);
}
+.card {
+ padding: 1rem;
+ border-radius: 0.5rem;
+ background-color: rgba(var(--text-color), 0.06);
+}
+
.page-layout {
display: grid;
grid-template-columns: 1.5rem minmax(0, 1fr) 1.5rem;
@@ -432,6 +460,38 @@ details[open] > summary .icon {
grid-column: 2/3;
}
+.page {
+ height: 100%;
+}
+
+#sign_in,
+#sign_up {
+ place-items: center;
+}
+#sign_in section,
+#sign_up section {
+ width: min(24rem, 100%);
+}
+#sign_in sm-form,
+#sign_up sm-form {
+ margin: 2rem 0;
+}
+
+#sign_up sm-copy {
+ font-size: 0.9rem;
+ --button-border-radius: 0.5rem ;
+}
+#sign_up .h2 {
+ margin-bottom: 0.5rem;
+}
+#sign_up .card {
+ margin: 1.5rem 0;
+}
+#sign_up h5 {
+ font-weight: 500;
+ color: rgba(var(--text-color), 0.8);
+}
+
#homepage {
height: 100%;
display: grid;
@@ -534,6 +594,11 @@ details[open] > summary .icon {
padding: 0 1.5rem;
}
+ #main_nav {
+ border-radius: 1rem 1rem 0 0;
+ background-color: var(--foreground-color);
+ }
+
.nav-item {
-webkit-box-flex: 1;
-ms-flex: 1;
@@ -554,6 +619,11 @@ details[open] > summary .icon {
}
}
@media screen and (min-width: 640px) {
+ #confirmation_popup,
+#prompt_popup {
+ --width: 24rem;
+ }
+
.page-layout {
grid-template-columns: 1fr 80vw 1fr;
}
@@ -577,13 +647,16 @@ details[open] > summary .icon {
right: 0;
content: "";
width: 1px;
- background-color: var(--accent-color);
+ background-color: rgba(var(--text-color), 0.3);
height: 80%;
}
.nav-item--active {
background-color: var(--accent-color--light);
}
+ .nav-item:not(:last-of-type) {
+ margin-bottom: 0.5rem;
+ }
.nav-item:last-of-type {
margin-top: auto;
margin-bottom: 1.5rem;
diff --git a/css/main.min.css b/css/main.min.css
index c5ec493..6242e56 100644
--- a/css/main.min.css
+++ b/css/main.min.css
@@ -1 +1 @@
-*{padding:0;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:"Roboto",sans-serif}:root{font-size:clamp(1rem, 1.2vmax, 3rem)}html,body{height:100%;scroll-behavior:smooth}body{color:rgba(var(--text-color), 1);background:rgba(var(--background-color), 1)}body,body *{--accent-color: #FF8181;--accent-color--light: rgb(231, 67, 67, 0.06);--text-color: 36, 36, 36;--background-color: 255, 246, 246;--foreground-color: rgb(255, 250, 250);--danger-color: red;--green: #00913c;scrollbar-width:thin}body[data-theme=dark],body[data-theme=dark] *{--accent-color: #ff7d7d;--accent-color--light: rgba(236, 184, 184, 0.1);--text-color: 240, 240, 240;--text-color-light: 170, 170, 170;--background-color: 10, 10, 10;--foreground-color: rgb(20, 20, 20);--danger-color: rgb(255, 106, 106);--green: #00E676}body[data-theme=dark] ::-webkit-calendar-picker-indicator{-webkit-filter:invert(1);filter:invert(1)}p{font-size:.9rem;max-width:70ch;line-height:1.7;color:rgba(var(--text-color), 0.8)}p:not(:last-of-type){margin-bottom:1.5rem}a:where([class]){color:inherit;text-decoration:none}a:where([class]):focus-visible{-webkit-box-shadow:0 0 0 .1rem rgba(var(--text-color), 1) inset;box-shadow:0 0 0 .1rem rgba(var(--text-color), 1) inset}a{color:var(--accent-color)}button,.button{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;border:none;background-color:transparent;overflow:hidden;color:inherit;cursor:pointer;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.button{padding:.4rem .6rem;border-radius:.3rem;font-weight:500;font-size:.8rem;border:solid thin rgba(var(--text-color), 0.5)}button:disabled{opacity:.5}a.button{padding:.6rem 1.2rem;border-radius:.3rem;background-color:rgba(var(--text-color), 0.06)}a:-webkit-any-link:focus-visible{outline:rgba(var(--text-color), 1) .1rem solid}a:-moz-any-link:focus-visible{outline:rgba(var(--text-color), 1) .1rem solid}a:any-link:focus-visible{outline:rgba(var(--text-color), 1) .1rem solid}sm-button{--border-radius: 0.3rem}sm-button[variant=primary] .icon{fill:rgba(var(--background-color), 1)}sm-button[disabled] .icon{fill:rgba(var(--text-color), 0.6)}ul{list-style:none}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.grid{display:grid}.hide{opacity:0;pointer-events:none}.hide-completely{display:none !important}.no-transformations{-webkit-transform:none !important;transform:none !important}.overflow-ellipsis{width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.breakable{overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.full-bleed{grid-column:1/4}.h1{font-size:2.5rem}.h2{font-size:2rem}.h3{font-size:1.4rem}.h4{font-size:1rem}.h5{font-size:.8rem}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.grid{display:grid}.grid-3{grid-template-columns:1fr auto auto}.flow-column{grid-auto-flow:column}.gap-0-5{gap:.5rem}.gap-1{gap:1rem}.gap-1-5{gap:1.5rem}.gap-2{gap:2rem}.gap-3{gap:3rem}.text-align-right{text-align:right}.align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.text-center{text-align:center}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-right{margin-left:auto}.align-self-center{-ms-flex-item-align:center;align-self:center}.justify-self-center{justify-self:center}.justify-self-start{justify-self:start}.justify-self-end{justify-self:end}.direction-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.stretch{-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;justify-items:stretch}.stretch>*{width:100%}.ripple{position:absolute;border-radius:50%;-webkit-transform:scale(0);transform:scale(0);background:rgba(var(--text-color), 0.16);pointer-events:none}.interact{position:relative;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:transparent}.observe-empty-state:empty{display:none}.observe-empty-state:not(:empty)~.empty-state{display:none}.icon{width:1.2rem;height:1.2rem;fill:rgba(var(--text-color), 0.8)}.button__icon{height:1.2rem;width:1.2rem}.button__icon--left{margin-right:.5rem}.button__icon--right{margin-left:.5rem}.icon-button{padding:.6rem;border-radius:.5rem;background-color:var(--accent-color--light)}.icon-button .icon{fill:var(--accent-color)}button:active,.nav-item:active{-webkit-transform:scale(0.9);transform:scale(0.9)}#main_page{padding:1.5rem}#main_page>section:nth-of-type(1){-ms-flex-line-pack:start;align-content:flex-start}#logo{display:grid;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;grid-template-columns:auto 1fr;gap:0 .3rem;margin-right:1rem}#logo h4{text-transform:capitalize;font-size:1rem;font-weight:600}#logo #main_logo{height:1.4rem;width:1.4rem;fill:rgba(var(--text-color), 1);stroke:none}details summary{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}details[open]>summary{margin-bottom:1rem}details[open]>summary .icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.page-layout{display:grid;grid-template-columns:1.5rem minmax(0, 1fr) 1.5rem}.page-layout>*{grid-column:2/3}#homepage{height:100%;display:grid;gap:0 1.5rem;grid-template-rows:auto 1fr auto;grid-template-columns:minmax(0, 1fr);grid-template-areas:"main-header" "subpages" "main-nav"}#main_nav{grid-area:main-nav;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.nav-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.8rem;border-radius:.5rem;color:inherit;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.nav-item--active .icon{fill:var(--accent-color)}.nav-item--active .nav-item__title{color:var(--accent-color)}#main_header{grid-area:main-header;padding:1.5rem;display:grid;gap:1rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center;grid-template-columns:1fr auto auto}#subpage_container{grid-area:subpages}#dashboard{display:grid;gap:1.5rem}#quick_actions_container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1.5rem;margin:2rem 0}.quick-action{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.quick-action__icon{padding:1rem;border-radius:1rem;background-color:var(--accent-color--light);margin-bottom:.8rem}.quick-action__icon .icon{height:1.5rem;width:1.5rem;fill:var(--accent-color)}.quick-action__title{font-size:.7rem;font-weight:500}@media screen and (max-width: 640px){#dashboard{padding:0 1.5rem}.nav-item{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nav-item__title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.7rem;font-weight:500;color:rgba(var(--text-color), 0.8);margin-top:.3rem}}@media screen and (min-width: 640px){.page-layout{grid-template-columns:1fr 80vw 1fr}#homepage{background-color:var(--foreground-color);grid-template-rows:auto 1fr;grid-template-columns:auto minmax(0, 1fr) 20rem;grid-template-areas:"main-header main-header user-section" "main-nav subpages user-section"}#main_nav{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 1rem}#main_nav::after{position:absolute;right:0;content:"";width:1px;background-color:var(--accent-color);height:80%}.nav-item--active{background-color:var(--accent-color--light)}.nav-item:last-of-type{margin-top:auto;margin-bottom:1.5rem}.nav-item__title{display:none}#user_section{grid-area:user-section;background-color:rgba(var(--background-color), 1)}}@media screen and (min-width: 1024px){#homepage{gap:0 3rem;grid-template-columns:14rem minmax(0, 1fr) 24rem}.nav-item__title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.9rem;font-weight:500;color:rgba(var(--text-color), 0.8);margin-left:.5rem}}@media(any-hover: hover){::-webkit-scrollbar{width:.5rem;height:.5rem}::-webkit-scrollbar-thumb{background:rgba(var(--text-color), 0.3);border-radius:1rem}::-webkit-scrollbar-thumb:hover{background:rgba(var(--text-color), 0.5)}.nav-item{-webkit-transition:background-color .3s,-webkit-transform .3s;transition:background-color .3s,-webkit-transform .3s;transition:background-color .3s,transform .3s;transition:background-color .3s,transform .3s,-webkit-transform .3s}.nav-item:hover{background-color:var(--accent-color--light)}}
\ No newline at end of file
+*{padding:0;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:"Roboto",sans-serif}:root{font-size:clamp(1rem, 1.2vmax, 3rem)}html,body{height:100%;scroll-behavior:smooth}body{color:rgba(var(--text-color), 1);background:rgba(var(--background-color), 1)}body,body *{--accent-color: #FF8181;--accent-color--light: rgb(231, 67, 67, 0.06);--text-color: 36, 36, 36;--background-color: 255, 246, 246;--foreground-color: rgb(255, 250, 250);--danger-color: red;--green: #00913c;scrollbar-width:thin}body[data-theme=dark],body[data-theme=dark] *{--accent-color: #ff7d7d;--accent-color--light: rgba(236, 184, 184, 0.1);--text-color: 230, 230, 230;--text-color-light: 170, 170, 170;--background-color: 10, 10, 10;--foreground-color: rgb(20, 20, 20);--danger-color: rgb(255, 106, 106);--green: #00E676}body[data-theme=dark] ::-webkit-calendar-picker-indicator{-webkit-filter:invert(1);filter:invert(1)}p{font-size:.9rem;max-width:70ch;line-height:1.7;color:rgba(var(--text-color), 0.8)}p:not(:last-of-type){margin-bottom:1.5rem}a:where([class]){color:inherit;text-decoration:none}a:where([class]):focus-visible{-webkit-box-shadow:0 0 0 .1rem rgba(var(--text-color), 1) inset;box-shadow:0 0 0 .1rem rgba(var(--text-color), 1) inset}a{color:var(--accent-color)}button,.button{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;border:none;background-color:transparent;overflow:hidden;color:inherit;cursor:pointer;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.button{padding:.4rem .6rem;border-radius:.3rem;font-weight:500;font-size:.8rem;border:solid thin rgba(var(--text-color), 0.5)}button:disabled{opacity:.5}a:-webkit-any-link:focus-visible{outline:rgba(var(--text-color), 1) .1rem solid}a:-moz-any-link:focus-visible{outline:rgba(var(--text-color), 1) .1rem solid}a:any-link:focus-visible{outline:rgba(var(--text-color), 1) .1rem solid}sm-button{--border-radius: 0.3rem}sm-button[variant=primary] .icon{fill:rgba(var(--background-color), 1)}sm-button[disabled] .icon{fill:rgba(var(--text-color), 0.6)}ul{list-style:none}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.grid{display:grid}.hide{opacity:0;pointer-events:none}.hide-completely{display:none !important}.no-transformations{-webkit-transform:none !important;transform:none !important}.overflow-ellipsis{width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.breakable{overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.full-bleed{grid-column:1/4}.h1{font-size:2.5rem}.h2{font-size:2rem}.h3{font-size:1.4rem}.h4{font-size:1rem}.h5{font-size:.8rem}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.grid{display:grid}.grid-3{grid-template-columns:1fr auto auto}.flow-column{grid-auto-flow:column}.gap-0-5{gap:.5rem}.gap-1{gap:1rem}.gap-1-5{gap:1.5rem}.gap-2{gap:2rem}.gap-3{gap:3rem}.text-align-right{text-align:right}.align-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.text-center{text-align:center}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-right{margin-left:auto}.align-self-center{-ms-flex-item-align:center;align-self:center}.justify-self-center{justify-self:center}.justify-self-start{justify-self:start}.justify-self-end{justify-self:end}.direction-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.stretch{-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;justify-items:stretch}.stretch>*{width:100%}.ripple{position:absolute;border-radius:50%;-webkit-transform:scale(0);transform:scale(0);background:rgba(var(--text-color), 0.16);pointer-events:none}.interact{position:relative;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:transparent}.observe-empty-state:empty{display:none}.observe-empty-state:not(:empty)~.empty-state{display:none}.icon{width:1.2rem;height:1.2rem;fill:rgba(var(--text-color), 0.8)}.button__icon{height:1.2rem;width:1.2rem}.button__icon--left{margin-right:.5rem}.button__icon--right{margin-left:.5rem}.icon-button{padding:.6rem;border-radius:.8rem;background-color:var(--accent-color--light)}.icon-button .icon{fill:var(--accent-color)}#confirmation_popup,#prompt_popup{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#confirmation_popup h4,#prompt_popup h4{font-weight:500;margin-bottom:.5rem}#confirmation_popup sm-button,#prompt_popup sm-button{margin:0}#confirmation_popup .flex,#prompt_popup .flex{padding:0;margin-top:1rem}#confirmation_popup .flex sm-button:first-of-type,#prompt_popup .flex sm-button:first-of-type{margin-right:.6rem;margin-left:auto}button:active,.button:active,.nav-item:active{-webkit-transform:scale(0.9);transform:scale(0.9)}#main_page{padding:1.5rem}#main_page>section:nth-of-type(1){-ms-flex-line-pack:start;align-content:flex-start}#logo{display:grid;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;grid-template-columns:auto 1fr;gap:0 .3rem;margin-right:1rem}#logo h4{text-transform:capitalize;font-size:1rem;font-weight:600}#logo #main_logo{height:1.4rem;width:1.4rem;fill:rgba(var(--text-color), 1);stroke:none}details summary{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}details[open]>summary{margin-bottom:1rem}details[open]>summary .icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.card{padding:1rem;border-radius:.5rem;background-color:rgba(var(--text-color), 0.06)}.page-layout{display:grid;grid-template-columns:1.5rem minmax(0, 1fr) 1.5rem}.page-layout>*{grid-column:2/3}.page{height:100%}#sign_in,#sign_up{place-items:center}#sign_in section,#sign_up section{width:min(24rem, 100%)}#sign_in sm-form,#sign_up sm-form{margin:2rem 0}#sign_up sm-copy{font-size:.9rem;--button-border-radius: 0.5rem }#sign_up .h2{margin-bottom:.5rem}#sign_up .card{margin:1.5rem 0}#sign_up h5{font-weight:500;color:rgba(var(--text-color), 0.8)}#homepage{height:100%;display:grid;gap:0 1.5rem;grid-template-rows:auto 1fr auto;grid-template-columns:minmax(0, 1fr);grid-template-areas:"main-header" "subpages" "main-nav"}#main_nav{grid-area:main-nav;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.nav-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.8rem;border-radius:.5rem;color:inherit;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.nav-item--active .icon{fill:var(--accent-color)}.nav-item--active .nav-item__title{color:var(--accent-color)}#main_header{grid-area:main-header;padding:1.5rem;display:grid;gap:1rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center;grid-template-columns:1fr auto auto}#subpage_container{grid-area:subpages}#dashboard{display:grid;gap:1.5rem}#quick_actions_container{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1.5rem;margin:2rem 0}.quick-action{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.quick-action__icon{padding:1rem;border-radius:1rem;background-color:var(--accent-color--light);margin-bottom:.8rem}.quick-action__icon .icon{height:1.5rem;width:1.5rem;fill:var(--accent-color)}.quick-action__title{font-size:.7rem;font-weight:500}@media screen and (max-width: 640px){#dashboard{padding:0 1.5rem}#main_nav{border-radius:1rem 1rem 0 0;background-color:var(--foreground-color)}.nav-item{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.nav-item__title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.7rem;font-weight:500;color:rgba(var(--text-color), 0.8);margin-top:.3rem}}@media screen and (min-width: 640px){#confirmation_popup,#prompt_popup{--width: 24rem}.page-layout{grid-template-columns:1fr 80vw 1fr}#homepage{background-color:var(--foreground-color);grid-template-rows:auto 1fr;grid-template-columns:auto minmax(0, 1fr) 20rem;grid-template-areas:"main-header main-header user-section" "main-nav subpages user-section"}#main_nav{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 1rem}#main_nav::after{position:absolute;right:0;content:"";width:1px;background-color:rgba(var(--text-color), 0.3);height:80%}.nav-item--active{background-color:var(--accent-color--light)}.nav-item:not(:last-of-type){margin-bottom:.5rem}.nav-item:last-of-type{margin-top:auto;margin-bottom:1.5rem}.nav-item__title{display:none}#user_section{grid-area:user-section;background-color:rgba(var(--background-color), 1)}}@media screen and (min-width: 1024px){#homepage{gap:0 3rem;grid-template-columns:14rem minmax(0, 1fr) 24rem}.nav-item__title{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:.9rem;font-weight:500;color:rgba(var(--text-color), 0.8);margin-left:.5rem}}@media(any-hover: hover){::-webkit-scrollbar{width:.5rem;height:.5rem}::-webkit-scrollbar-thumb{background:rgba(var(--text-color), 0.3);border-radius:1rem}::-webkit-scrollbar-thumb:hover{background:rgba(var(--text-color), 0.5)}.nav-item{-webkit-transition:background-color .3s,-webkit-transform .3s;transition:background-color .3s,-webkit-transform .3s;transition:background-color .3s,transform .3s;transition:background-color .3s,transform .3s,-webkit-transform .3s}.nav-item:hover{background-color:var(--accent-color--light)}}
\ No newline at end of file
diff --git a/css/main.scss b/css/main.scss
index ff7e021..b502ac1 100644
--- a/css/main.scss
+++ b/css/main.scss
@@ -38,7 +38,7 @@ body[data-theme='dark'] {
* {
--accent-color: #ff7d7d;
--accent-color--light: rgba(236, 184, 184, 0.1);
- --text-color: 240, 240, 240;
+ --text-color: 230, 230, 230;
--text-color-light: 170, 170, 170;
--background-color: 10, 10, 10;
--foreground-color: rgb(20, 20, 20);
@@ -99,12 +99,6 @@ button:disabled {
opacity: 0.5;
}
-a.button {
- padding: 0.6rem 1.2rem;
- border-radius: 0.3rem;
- background-color: rgba(var(--text-color), 0.06);
-}
-
a:any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid;
}
@@ -341,14 +335,38 @@ ul {
.icon-button{
padding: 0.6rem;
- border-radius: 0.5rem;
+ border-radius: 0.8rem;
background-color: var(--accent-color--light);
.icon{
fill: var(--accent-color);
}
}
+#confirmation_popup,
+#prompt_popup {
+ flex-direction: column;
+
+ h4 {
+ font-weight: 500;
+ margin-bottom: 0.5rem;
+ }
+
+ sm-button {
+ margin: 0;
+ }
+
+ .flex {
+ padding: 0;
+ margin-top: 1rem;
+
+ sm-button:first-of-type {
+ margin-right: 0.6rem;
+ margin-left: auto;
+ }
+ }
+}
button:active,
+.button:active,
.nav-item:active{
transform: scale(0.9);
}
@@ -396,6 +414,11 @@ details {
}
}
+.card{
+ padding: 1rem;
+ border-radius: 0.5rem;
+ background-color: rgba(var(--text-color), 0.06);
+}
.page-layout{
display: grid;
grid-template-columns: 1.5rem minmax(0, 1fr) 1.5rem;
@@ -403,6 +426,35 @@ details {
grid-column: 2/3;
}
}
+.page{
+ height: 100%;
+}
+#sign_in,
+#sign_up{
+ place-items: center;
+ section{
+ width: min(24rem, 100%);
+ }
+ sm-form{
+ margin: 2rem 0;
+ }
+}
+#sign_up{
+ sm-copy{
+ font-size: 0.9rem;
+ --button-border-radius: 0.5rem
+ }
+ .h2{
+ margin-bottom: 0.5rem;
+ }
+ .card{
+ margin: 1.5rem 0;
+ }
+ h5{
+ font-weight: 500;
+ color: rgba(var(--text-color), 0.8);
+ }
+}
#homepage{
height: 100%;
display: grid;
@@ -477,6 +529,10 @@ details {
#dashboard{
padding: 0 1.5rem;
}
+ #main_nav{
+ border-radius: 1rem 1rem 0 0;
+ background-color: var(--foreground-color);
+ }
.nav-item{
flex: 1;
flex-direction: column;
@@ -490,6 +546,10 @@ details {
}
}
@media screen and (min-width: 640px) {
+ #confirmation_popup,
+ #prompt_popup {
+ --width: 24rem;
+ }
.page-layout{
grid-template-columns: 1fr 80vw 1fr;
}
@@ -507,7 +567,7 @@ details {
right: 0;
content: '';
width: 1px;
- background-color: var(--accent-color);
+ background-color: rgba(var(--text-color), 0.3);
height: 80%;
}
}
@@ -515,12 +575,12 @@ details {
&--active{
background-color: var(--accent-color--light);
}
+ &:not(:last-of-type){
+ margin-bottom: 0.5rem;
+ }
&:last-of-type{
margin-top: auto;
margin-bottom: 1.5rem;
- }
- .icon{
-
}
&__title{
display: none;
diff --git a/index.html b/index.html
index 2a7b5ed..b1f1a41 100644
--- a/index.html
+++ b/index.html
@@ -36,36 +36,6 @@
}
-
@@ -92,13 +62,37 @@
- Sign In
-
-
- SIgn In
-
+
-
+
+
+ FLO credentials
+ Get your FLO credentials to use RanchiMall Bank and all RanchiMall FLO apps.
+
+
+
+
FLO ID
+
+
+
+
Private key
+
+
+
+ Sign in with these credentials
+
+
+
-
+
+
-