Skip to content

Commit e63d7c8

Browse files
Add files via upload
1 parent 8ca1c2f commit e63d7c8

File tree

2 files changed

+102
-0
lines changed

2 files changed

+102
-0
lines changed

text-finder.css

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

text-finder.js

Lines changed: 3 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)