blob: cd18c0af2f10dfc8da1c6c5744b3859bf0d3533e (
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
|
.Main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.searchMain {
display: flex;
align-items: center;
justify-content: center;
}
.MangaImage {
width: auto;
height: auto;
}
.SearchBar {
display: flex;
align-items: center;
background: #121212;
padding: 0.2rem;
border-radius: 0.5rem;
width: 20dvw;
margin-top: 0.3rem;
}
.histButton button {
margin: 0px 5px 0px 5px;
border-radius: 0.2rem;
padding: 0.4rem;
border: none;
outline: none;
font-family: "Lexend Deca", serif;
background: #1f1f1f;
color: white;
cursor: pointer;
}
.SearchBar input {
background: none;
outline: none;
border: none;
margin-left: 5px;
padding: 4px;
width: 100%;
color: white;
font-family: "Lexend Deca", serif;
font-size: 16px;
}
.SearchBar input::placeholder {
color: rgb(71, 71, 71);
}
@media screen and (max-width: 768px) {
.SearchBar {
width: 40vw;
}
}
@media screen and (max-width: 425px) {
.MangaImage {
width: 100%;
height: auto;
}
.SearchBar {
width: 60dvw;
}
}
|