-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.css
75 lines (63 loc) · 1.16 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
/*
index.css
altsource-viewer (https://github.com/therealFoxster/altsource-viewer)
Copyright (c) 2023 Foxster.
MIT License.
*/
#nav-bar.hide-border {
border-bottom: none;
}
#main h1 {
margin-bottom: 0.35rem;
padding: 0 1rem;
}
#main input {
width: 95%;
font-size: 1em;
padding: 0.5rem 0.8rem;
border: none;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.07);
}
/* input:focus {
outline: none;
} */
.section a {
color: white;
}
.suggestion {
padding: 1rem 1rem 1rem 0;
margin-left: 1rem;
font-size: 1.1rem;
border-bottom: 0.1px solid var(--color-separator);
}
.suggestion .bi {
margin-right: 4px;
}
@media (hover:hover) {
.suggestion:hover {
opacity: 0.75;
}
}
@media (prefers-color-scheme: dark) {
#main input {
background-color: rgba(255, 255, 255, 0.07);
color: white;
}
.suggestion {
border-bottom: 0.1px solid var(--color-separator-dark) !important;
}
}
#main .textfield {
display: flex;
align-items: center;
justify-content: center;
padding: 0 1rem;
gap: 0.85rem;
margin-bottom: 1rem;
}
#go {
font-size: 1.1rem;
display: none;
transition: opacity 0.25s ease-in-out;
}