Skip to content

Commit fd919e4

Browse files
Add files via upload
1 parent 9756424 commit fd919e4

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed

text-finder.css

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/*Css part of the text finder, any part of this file can be customised according to your need except #nav-stick_top*/
2+
/*
3+
*Copyright 2022 MultiMentality
4+
*Mit license (https://github.com/Yashasmonkeycoder/find-text_plugin/blob/main/LICENSE)
5+
*original file text-finder.css (https://github.com/Yashasmonkeycoder/find-text_plugin/blob/main/text-finder.css)
6+
*/@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
7+
/*above link credit goes to https://fontawesome.com */
8+
#nav-stick_top {
9+
position: fixed;
10+
top: 0;
11+
left:0;
12+
width: 100%;
13+
background: whitesmoke;
14+
z-index: 99999;
15+
transition: all 1.5s ease;
16+
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
17+
padding: 0.8rem;
18+
display: none;
19+
}
20+
#id_search-m{
21+
padding: 10px;
22+
border: 1px solid grey;
23+
float: left;
24+
width: 28%;
25+
background: #f1f1f1;
26+
border-radius: 15px 0px 0px 15px;
27+
}
28+
#id_search-m:focus {
29+
outline: none !important;
30+
}
31+
#id_search-b{
32+
float: left;
33+
padding: 8px;
34+
background: #2196F3;
35+
color: white;
36+
font-size: 17px;
37+
border: 1px solid grey;
38+
border-left: none;
39+
cursor: pointer;
40+
border-radius: 0px 15px 15px 0px;
41+
}
42+
.vr{
43+
font-weight: 5px;
44+
font-size: 30px;
45+
color:#636363;
46+
position: absolute;
47+
left: 80%;
48+
}
49+
#sub_num_txt{
50+
position: absolute;
51+
font-size: 30px;
52+
left: 73%;
53+
top: 25%;
54+
}
55+
#sub_num_txt:hover{
56+
color: #4cdbff;
57+
text-shadow: 0px 0px 10px #4cdbff;
58+
}
59+
#add_num_txt{
60+
position: absolute;
61+
font-size: 30px;
62+
left: 65%;
63+
top: 25%;
64+
}
65+
#add_num_txt:hover{
66+
color: #4cdbff;
67+
text-shadow: 0px 0px 10px #4cdbff;
68+
}
69+
#cont_search{
70+
font-family: 'Trebuchet MS', sans-serif;
71+
color: #969696;
72+
position: absolute;
73+
left: 48%;
74+
max-width: 50px;
75+
top: 35%;
76+
}
77+
#close_search{
78+
font-weight: 20px;
79+
font-size: 35px;
80+
color: #6b6b6b;
81+
position: absolute;
82+
left: 85%;
83+
}
84+
.btn-srh{
85+
background: #5E5DF0;
86+
border-radius: 999px;
87+
box-shadow: #5E5DF0 0 10px 20px -10px;
88+
box-sizing: border-box;
89+
color: #FFFFFF;
90+
cursor: pointer;
91+
font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
92+
font-size: 16px;
93+
font-weight: 700;
94+
line-height: 24px;
95+
opacity: 1;
96+
outline: 0 solid transparent;
97+
padding: 8px 18px;
98+
user-select: none;
99+
-webkit-user-select: none;
100+
touch-action: manipulation;
101+
width: fit-content;
102+
word-break: break-word;
103+
border: 0;
104+
}

text-finder.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)