Skip to content

Commit 8fc162f

Browse files
Add files via upload
1 parent cf31273 commit 8fc162f

File tree

2 files changed

+78
-0
lines changed

2 files changed

+78
-0
lines changed

text-finder.css

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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-b{
24+
float: left;
25+
padding: 8px;
26+
background: #2196F3;
27+
color: white;
28+
font-size: 17px;
29+
border: 1px solid grey;
30+
border-left: none;
31+
cursor: pointer;
32+
border-radius: 0px 15px 15px 0px;
33+
}
34+
.vr{
35+
font-weight: 5px;
36+
font-size: 30px;
37+
color:#636363;
38+
position: absolute;
39+
left: 80%;
40+
}
41+
#sub_num_txt{
42+
position: absolute;
43+
font-size: 30px;
44+
left: 73%;
45+
top: 25%;
46+
}
47+
#sub_num_txt:hover{
48+
color: #4cdbff;
49+
text-shadow: 0px 0px 10px #4cdbff;
50+
}
51+
#add_num_txt{
52+
position: absolute;
53+
font-size: 30px;
54+
left: 65%;
55+
top: 25%;
56+
}
57+
#add_num_txt:hover{
58+
color: #4cdbff;
59+
text-shadow: 0px 0px 10px #4cdbff;
60+
}
61+
#cont_search{
62+
font-family: 'Trebuchet MS', sans-serif;
63+
color: #969696;
64+
position: absolute;
65+
left: 48%;
66+
max-width: 50px;
67+
top: 35%;
68+
}
69+
#close_search{
70+
font-weight: 20px;
71+
font-size: 35px;
72+
color: #6b6b6b;
73+
position: absolute;
74+
left: 85%;
75+
}

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)