aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/styles.css
blob: 83cd82dfe5aec8f85654e56c36e99490a0c0ab24 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* 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, #000715);
}

body {
    font-family: Inter, sans-serif;
    font-optical-sizing: auto;
}

input, textarea {
    resize: none;
    font-family: Inter, sans-serif;
    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, input[type=button], input[type=reset], input[type=submit], .button {
    font-size: 14pt;
    padding: 6px 16px;
    border-radius: 9999px;
    border-style: none;
    background-color: light-dark(#ebebeb, #3a3a3a);
    display: flex;
    gap: 5px;
    text-align: center;
    justify-content: center;
    align-items: center;

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

.button2 {
    text-transform: uppercase;
    border: 1px solid #5cdbff;
    padding: 10px 25px;
    font-size: 12pt;
    font-weight: 600;
    background-color: transparent;
    text-shadow: #5cdbff 0 0 50px;
}

.icon {
    font-family: 'Material Symbols Outlined'
}

h1 {
    font-size: 40px;
}

progress {
    min-width: 100%;
}

ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}