diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-12-22 14:44:26 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-12-22 14:44:26 +0100 |
| commit | 58ef5833b3f77f321c587dd86448c888029016ce (patch) | |
| tree | fe5e6f47781573cc1fb5938f9b8cd8b51022946a /code/api/wwwroot/styles | |
| parent | 82ade3c31fb17b662feec59e9e654ceb66edbb7a (diff) | |
| download | storage-58ef5833b3f77f321c587dd86448c888029016ce.tar.xz storage-58ef5833b3f77f321c587dd86448c888029016ce.zip | |
feat: Many things
- Working Login/Logout
- Groundwork for web components
- Loading web-components with version tag
- Load temporal-polyfill globally
Diffstat (limited to 'code/api/wwwroot/styles')
| -rw-r--r-- | code/api/wwwroot/styles/base.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/code/api/wwwroot/styles/base.css b/code/api/wwwroot/styles/base.css index e5d9e42..318b601 100644 --- a/code/api/wwwroot/styles/base.css +++ b/code/api/wwwroot/styles/base.css @@ -350,5 +350,19 @@ template { /* System Fonts as used by GitHub */ body { + background: white; + color: #333; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; +} + +form .error.show { + display: inline-block; +} + +form .error { + display: none; + padding: .5em 1em; + border: 1px solid red; + background: rgba(255, 0, 0, .05); + color: red; }
\ No newline at end of file |
