diff --git a/assets/style.css b/assets/style.css index f280579..e34e259 100644 --- a/assets/style.css +++ b/assets/style.css @@ -11,11 +11,12 @@ html { --primary-color: rgb(87, 75, 255); - background-color: #f1f1f1; - --tile-color: rgb(226, 226, 226); + --tile-color: rgb(255, 255, 255); + background-color: rgb(240, 240, 240); } + html * { - color: rgb(31, 31, 31); + color: black; } html, body, #__nuxt { @@ -27,7 +28,7 @@ html, body, #__nuxt { display: grid; grid-template-columns: auto auto auto 1fr auto auto; align-content: start; - background-color: rgb(228, 228, 228); + background-color: rgb(247, 247, 247); } .resource, .header { display: contents; @@ -45,10 +46,13 @@ html, body, #__nuxt { display: flex; align-items: center; } +.resource:hover > .grid-element { + background-color: #c2c2c2; +} .resource p { font-weight: 600; font-family: "Source Code Pro", monospace; } .even > .grid-element { - background-color: rgb(202, 202, 202); + background-color: rgb(233, 233, 233); } \ No newline at end of file diff --git a/components/ui/UiInput.vue b/components/ui/UiInput.vue index 2cd9d4d..8b2095c 100644 --- a/components/ui/UiInput.vue +++ b/components/ui/UiInput.vue @@ -27,7 +27,7 @@ defineProps<{ .field input, .field .input, .field textarea, .field select { min-height: 2.5rem; border-radius: 0.25rem; - background-color: rgb(51, 51, 51); + background-color: rgb(255, 255, 255); width: 100%; border: 2px solid #444444; outline: none; diff --git a/pages/account/inspect/statefulsets.vue b/pages/account/inspect/statefulsets.vue new file mode 100644 index 0000000..22cbb41 --- /dev/null +++ b/pages/account/inspect/statefulsets.vue @@ -0,0 +1,14 @@ + + + \ No newline at end of file diff --git a/pages/account/inspect/statefulsets/[namespace].vue b/pages/account/inspect/statefulsets/[namespace].vue new file mode 100644 index 0000000..27e0f69 --- /dev/null +++ b/pages/account/inspect/statefulsets/[namespace].vue @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/pages/index.vue b/pages/index.vue index 4beb581..61b709c 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -1,23 +1,26 @@ @@ -61,12 +64,13 @@ function setSessionCookie(session: Session, exp: number) justify-content: center; align-items: center; flex-direction: column; + } -.login { +.login-window { + display: flex; + flex-direction: column; + align-items: center; width: 640px; - background-color: #f1f1f1; - padding: 2rem; - border-radius: 0.5rem; } .logo { width: 10rem;