Dark mode.

This commit is contained in:
Mike Cao 2020-09-20 01:33:39 -07:00
parent 4bb95cd997
commit aa265d1d42
29 changed files with 221 additions and 60 deletions

View file

@ -1,14 +1,17 @@
html,
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
font-size: var(--font-size-normal);
font-weight: 400;
line-height: 1.8;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
overflow: auto;
box-sizing: border-box;
display: flex;
flex-direction: column;
font-size: var(--font-size-normal);
color: var(--gray900);
background: var(--gray75);
}
@ -51,6 +54,8 @@ a:visited {
input[type='text'],
input[type='password'],
textarea {
color: var(--gray900);
background: var(--gray50);
padding: 4px 8px;
font-size: var(--font-size-normal);
line-height: 1.8;
@ -92,6 +97,7 @@ main {
flex-direction: column;
width: 100%;
height: 100%;
flex: 1;
}
#__modals {