-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (106 loc) · 1.98 KB
/
style.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
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
116
117
118
119
120
121
122
123
.menu_item {
cursor: pointer;
flex-shrink: 0;
width: 100px;
height: 120px;
margin: 10px;
margin-top: 14px;
border-bottom: 1px solid;
padding: 5px;
display: flex;
flex-direction: column;
border: 1px solid white;
transition: all 0.2s;
font-family: "Poppins", sans-serif;
font-size: 14px;
line-height: 1.5;
color: #888888;
-webkit-font-smoothing: antialiased !important;
background-color: white;
}
.menu_item:hover {
background-color: #ececec;
border-radius: 5px;
color: darkgray;
}
.cloud_button {
transition: all 0.2s;
margin-bottom: 5px;
font-size: 15px;
cursor: pointer;
}
.cloud_button:hover {
color: #1670bf;
}
.search_container {
display: flex;
flex-direction: column;
height: 100%;
}
.search_header {
padding: 15px 30px;
border-bottom: 1px solid lightgrey;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
display: flex;
flex-wrap: wrap;
justify-items: center;
font-size: 14px;
}
.search_header input, .search_header select {
height: 24px;
padding: 4px 10px;
color: black !important;
}
.search_bar {
margin-right: 15px;
}
.search_direction {
max-width: 150px;
font-size: 12px;
margin-right: 15px;
}
.search_status, .search_progress {
justify-self: flex-end;
}
.search_result_container {
overflow: scroll;
padding: 20px 15px;
color: grey !important;
}
.search_result_container h4 {
color: darkgray !important;
margin-bottom: 10px;
}
.search_finded_name {
font-weight: bold;
}
.search_chapter_link {
font-size: 24px;
transition: all 0.2s;
cursor: pointer;
margin-bottom: 10px;
margin-right: 15px;
}
.v--modal-overlay {
background: transparent !important;
pointer-events: none;
}
.v--modal-box {
pointer-events: all;
}
.v--modal-box .close_modal {
font-size: 16px;
color: darkgrey;
transition: all 0.2s;
cursor: pointer;
}
.v--modal-box .close_modal:hover {
color: black;
}
.reminder_injected {
transition: all 2s;
color: black;
}
a[href="https://wuxiaworld.site/"] {
display: none;
}