blob: d1b4c53c487e2a40815f8337490577337fef219e (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
.waitWhileLoading {
font-size: 18px;
font-family: "Atkinson Hyperlegible";
text-align: center;
color: white;
}
.inputContainer {
display: flex;
align-items: center;
}
.inputContainer button {
margin: 5px;
background-color: #121212;
padding: 10px;
border-radius: 10px;
outline: none;
border: none;
color: white;
font-family: "Atkinson Hyperlegible";
}
.inputContainer button a {
text-decoration: none;
color: white;
}
.searchContainer input {
border: none;
border-radius: 5px;
color: white;
outline: none;
background: none;
width: 100%;
font-family: "Atkinson Hyperlegible", serif;
font-size: 16px;
}
.searchContainer {
display: flex;
align-items: center;
margin: 20px 0px 20px 0px;
background-color: #121212;
padding: 10px;
border-radius: 10px;
width: 30%;
}
.searchIcon {
color: white;
margin-right: 5px;
}
.animeEntry {
display: flex;
overflow-x: auto;
}
.animeEntry .anime {
opacity: 0.5;
}
.animeEntry:hover .anime:hover {
opacity: 1;
background-color: #292929;
}
.animeEntry::-webkit-scrollbar {
height: 5px;
}
.animeEntry::-webkit-scrollbar-track {
background-color: #636363;
border-radius: 5px;
}
.animeEntry::-webkit-scrollbar-thumb {
background-color: rgba(196, 196, 196, 0.692);
border-radius: 5px;
}
.anime {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px;
margin: 10px 10px 0px 0px;
border-radius: 0.5rem;
transition: opacity 200ms ease-in, background-color 200ms linear;
background-color: #242424d0;
}
.anime p {
color: white;
width: 20dvw;
font-family: "Atkinson Hyperlegible", serif;
font-size: 18px;
}
.animeImage {
border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
.searchContainer {
width: 70%;
}
.anime p {
width: 50dvw;
}
}
|