-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
86 lines (82 loc) · 1.3 KB
/
index.css
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
82
83
84
85
86
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--aa-selected-color-rgb: 209, 213, 219 !important;
--aa-primary-color-rgb: 217, 3, 104 !important;
}
a {
text-decoration: none;
}
html,
body {
font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont,
'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem 0.5rem;
gap: 1.5rem;
max-width: 640px;
margin: auto;
}
header {
width: 100%;
text-align: right;
font-size: 14px;
}
header a {
color: black;
text-decoration: underline;
}
main {
width: 100%;
}
li {
font-weight: 500;
color: #9ca3af;
}
h1 {
font-weight: 600;
}
b {
font-weight: 500;
color: black;
}
.aa-Form {
border-radius: 0.75rem !important;
}
.aa-InputWrapperPrefix > * {
display: none !important;
}
.aa-InputWrapperPrefix {
width: 0.75rem;
}
.aa-Panel {
border-radius: 0.5rem !important;
font-size: 14px !important;
}
h2 {
font-size: medium;
font-weight: normal;
text-align: center;
}
#typesense,
#typesense > * {
color: rgb(var(--aa-primary-color-rgb));
}
#typesense {
font-weight: 500;
}
#typesense b {
font-weight: 700;
}
input {
font-weight: 500 !important;
font-size: 14px !important;
}