| Davit Tabidze | c6c663f | 2024-07-12 17:35:40 +0400 | [diff] [blame^] | 1 | [data-theme="light"], |
| 2 | :root:not([data-theme="dark"]) { |
| 3 | --pico-font-family: Hack, monospace; |
| 4 | --pico-font-size: 14px; |
| 5 | --pico-background-color: #d6d6d6; |
| 6 | --pico-border-radius: 0; |
| 7 | --pico-form-element-border-color: #ffffff; |
| 8 | --pico-form-element-active-border-color: #7f9f7f; |
| 9 | --pico-form-element-focus-color: #7f9f7f; |
| 10 | --pico-form-element-background-color: #3a3a3a; |
| 11 | --pico-form-element-active-background-color: #3a3a3a; |
| 12 | --pico-form-element-selected-background-color: #3a3a3a; |
| 13 | --pico-primary: #7f9f7f; |
| 14 | --pico-primary-background: #7f9f7f; |
| 15 | --pico-primary-hover: #d4888d; |
| 16 | --pico-primary-hover-background: #d4888d; |
| 17 | --pico-grid-spacing-horizontal: 0; |
| 18 | } |
| 19 | |
| 20 | body { |
| 21 | width: 100%; |
| 22 | height: 100vh; |
| 23 | display: flex; |
| 24 | justify-content: center; |
| 25 | align-items: center; |
| 26 | } |
| 27 | |
| 28 | .container { |
| 29 | max-width: 500px !important; |
| 30 | width: 100%; |
| giolekva | 4703175 | 2021-11-12 14:34:33 +0400 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | form { |
| Davit Tabidze | c6c663f | 2024-07-12 17:35:40 +0400 | [diff] [blame^] | 34 | padding: 10px; |
| 35 | background-color: var(--pico-form-element-background-color); |
| 36 | width: 100%; |
| giolekva | 4703175 | 2021-11-12 14:34:33 +0400 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | input { |
| Davit Tabidze | c6c663f | 2024-07-12 17:35:40 +0400 | [diff] [blame^] | 40 | background: var(--pico-form-element-background-color); |
| 41 | color: white; |
| 42 | padding: 10px; |
| 43 | /* border: 1px solid var(--pico-form-element-border-color); */ |
| 44 | text-align: left; |
| 45 | font-family: var(--pico-font-family) !important; |
| giolekva | 4703175 | 2021-11-12 14:34:33 +0400 | [diff] [blame] | 46 | } |
| 47 | |
| Davit Tabidze | c6c663f | 2024-07-12 17:35:40 +0400 | [diff] [blame^] | 48 | input:-webkit-autofill, |
| 49 | input:-webkit-autofill:hover, |
| 50 | input:-webkit-autofill:focus, |
| 51 | input:-webkit-autofill:active { |
| 52 | -webkit-text-fill-color: white !important; |
| 53 | transition: background-color 5000s ease-in-out 0s; |
| 54 | background-color: var(--pico-form-element-background-color) !important; |
| 55 | /* font-size: var(--pico-font-size) !important; |
| 56 | font-family: var(--pico-font-family) !important; */ |
| giolekva | 4703175 | 2021-11-12 14:34:33 +0400 | [diff] [blame] | 57 | } |
| 58 | |
| Davit Tabidze | c6c663f | 2024-07-12 17:35:40 +0400 | [diff] [blame^] | 59 | &:-webkit-autofill::first-line { |
| 60 | font-family: var(--pico-font-family) !important; |
| giolekva | 4703175 | 2021-11-12 14:34:33 +0400 | [diff] [blame] | 61 | } |
| 62 | |
| Davit Tabidze | c6c663f | 2024-07-12 17:35:40 +0400 | [diff] [blame^] | 63 | p { |
| 64 | color: white; |
| giolekva | 4703175 | 2021-11-12 14:34:33 +0400 | [diff] [blame] | 65 | } |
| 66 | |
| Davit Tabidze | c6c663f | 2024-07-12 17:35:40 +0400 | [diff] [blame^] | 67 | .logo span:first-child { |
| 68 | color: white; |
| 69 | font-size: 24px; |
| 70 | padding-left: 10px; |
| 71 | } |
| 72 | |
| 73 | .logo span:nth-child(2) { |
| 74 | color: var(--pico-primary-hover); |
| 75 | font-size: 24px; |
| 76 | } |
| 77 | |
| 78 | .logo { |
| 79 | padding-top: var(--pico-spacing); |
| 80 | background-color: var(--pico-form-element-background-color); |
| 81 | } |
| 82 | |
| 83 | label { |
| 84 | color: white; |
| 85 | } |