aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/styles.css
blob: bad2232b4ba944b828fd6901bb458b701f6504d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* You can add global styles to this file, and also import other style files */

:root {
    color-scheme: light dark;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
    background-color: light-dark(white, #242424);
}

body {
    font-family: sans-serif;
}

input {
    font-size: 14pt;
    padding: 5px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    background-color: light-dark(#ebebeb, #3a3a3a);

    &:hover {
        background-color: light-dark(#e1e1e1, #444444);
    }
}

button, .button {
    font-size: 14pt;
    padding: 6px 10px;
    border-radius: 5px;
    border-style: none;
    background-color: light-dark(#ebebeb, #3a3a3a);

    &:hover {
        background-color: light-dark(#e1e1e1, #444444);
    }
}