-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add search button #39
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
aad5837
Added Search button
palakjadwani bdf7f3f
Added search button
palakjadwani f08b906
Search button added
palakjadwani 63533a2
Search button
palakjadwani 43be705
Merge branch 'master' into Add_SearchButton
palakjadwani f9c368a
Merge branch 'master' into Add_SearchButton
palakjadwani File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
<link rel="stylesheet" type="text/css" href="css/font.css"> | ||
<link rel="stylesheet" type="text/css" href="css/fontawesome-all.min.css"> | ||
<link rel="shortcut icon" type="image/png" href="/icon/icon.png"/> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<title>OpenGenus: World's first Offline Search Engine</title> | ||
<meta charset='utf-8'> | ||
</head> | ||
|
@@ -25,12 +26,10 @@ | |
|
||
<div class="col-sm-4"> | ||
<div class="input-group"> | ||
<input id="search" class="form-control text-center" type="search" size="128" placeholder="Search any code; Try: sorting"> | ||
</div> | ||
<div id="pop-tags"></div> | ||
<input id="search" class="form-control text-cente" placeholder="Search any code"> | ||
<button type="submit" class="btn-xs button-pop btn-warning" ><i class="fa fa-search"></i></button> | ||
</div> | ||
|
||
|
||
|
||
<div class="col-sm-4"> | ||
|
||
<a class="btn float-right" target="_blank" id="help" href="javascript:void(0)">Help</a> | ||
|
@@ -41,38 +40,37 @@ | |
|
||
</div> | ||
|
||
|
||
<div id="pop-tags"></div> | ||
|
||
|
||
</div><br> | ||
|
||
</div> | ||
</div> | ||
|
||
<div id="front"> | ||
<h1 style="text-align: center;">World's first Offline Search Engine</h1> | ||
<hr> | ||
<img id="fact" src="image/1.jpg" alt="Enjoy our daily code fact" style="width:50vw; height:50vh; position: relative; left: 50%; transform: translate(-50%, 0%);"/> | ||
<div id="front"> | ||
<h1 style="text-align: center;">World's first Offline Search Engine</h1> | ||
<hr> | ||
<img id="fact" src="image/1.jpg" alt="Enjoy our daily code fact" style="width:50vw; height:50vh; position: relative; left: 50%; transform: translate(-50%, 0%);"/> | ||
|
||
<hr> | ||
</div> | ||
<hr> | ||
</div> | ||
|
||
<div id="no_of_results"></div> | ||
<div id="no_of_results"></div> | ||
|
||
<div class="bricklayer" id="bl"></div> | ||
<div class="bricklayer" id="bl"></div> | ||
|
||
<div id="error-message" class="row"></div> | ||
<div id="error-message" class="row"></div> | ||
|
||
<div id="favorites"></div> | ||
|
||
<footer class="footer"> | ||
<div class="container"> | ||
<span class="text-muted">Built with ❤ @<a target="_blank" title="Works only when you are online" href="https://github.com/OpenGenus/">OpenGenus</a> | ||
Email: <a target="_blank" title="Works offline if email app enabled" href="mailto:[email protected]"> 📬 [email protected]</a></span> | ||
<span class="text-muted float-right">Maintained by and part of the <a target="_blank" title="Works only when you are online" href="http://www.opengenus.org/"> 👪 OpenGenus Foundation</a></span> | ||
</div> | ||
|
||
</footer> | ||
<div id="favorites"></div> | ||
|
||
<footer class="footer"> | ||
<div class="container"> | ||
<span class="text-muted">Built with ❤ @<a target="_blank" title="Works only when you are online" href="https://github.com/OpenGenus/">OpenGenus</a> | ||
Email: <a target="_blank" title="Works offline if email app enabled" href="mailto:[email protected]"> 📬 [email protected]</a></span> | ||
<span class="text-muted float-right">Maintained by and part of the <a target="_blank" title="Works only when you are online" href="http://www.opengenus.org/"> 👪 OpenGenus Foundation</a></span> | ||
</div> | ||
</footer> | ||
|
||
<div id="help_popup"> | ||
<div id="popup"> | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can link only to local resources as this extension is intended to work offline. We are using
fontawesome-all.min.css
, so, you may consider using this as we must consider the size of our extension as well.