Skip to content
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

Changes regarding Search button, Pop-tags, help-modal and Footer. #89

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 44 additions & 22 deletions code/css/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,6 @@ body {

font-family: 'Roboto Mono', monospace;
}
article {
display: block;
text-align: left;
width: 80%;
padding-top: 2%;
padding-bottom: 15%;
margin: 0 auto;
}

footer {
clear:both;
Expand All @@ -30,13 +22,23 @@ footer {
width: 100%;
height: 60px;
line-height: 60px;
background-color: #E5E8E8;
background-color: #E5E8E8;
margin-top: 2%;
margin-bottom: 0;
}
article {
display: block;
text-align: left;
width: 80%;
padding-top: 2%;
padding-bottom: 15%;
margin: 0 auto;
}

.favListItem {
text-align: center;
}

li {
padding-left: 40px;
.sortbythis:hover
{
cursor: pointer;
Expand Down Expand Up @@ -72,44 +74,41 @@ min-width: 120px;
margin-top: 7px;
height: 24px;
font-size: 12px;
cursor: pointer;
}

.fa {
font-size: 15px;
cursor: pointer;
user-select: none;
}

.fa:hover {
color: darkblue;
}

.fa:hover {
color: darkblue;
}
.checked {
color: orange;
}


.card-title{
card-title{
font-size: 20px;
font-weight: bolder;
text-align: center;
background-color:rgb(255, 193, 7);
/*Lighter shade for future use -> rgba(255, 191, 0, 0.52);*/
/*Lighter shade for future use -> rgba(255, 191, 0, 0.52);*/
}
.bricklayer
{
margin-bottom: 200px;
}

@media screen and (min-width: 768px) {
.bricklayer-column-sizer {
/* Each column will be 100px width and there will be 5 columns. */
width: 33%;
}
}

/* You should add more media queries to make it fully responsive. */

@media screen and (min-width: 768px) {
.bricklayer-column-sizer {
/* Each column will be 125px width and there will be 4 columns. */
Expand Down Expand Up @@ -180,7 +179,29 @@ hr {
outline:none;
color: #077bff;
}

#pop-tags{
padding-left: 20%;
}
.input-group{
border:1px solid #ced4da;
border-radius:5px;
border-width: 2px;
margin-top: 20px;
margin-bottom: 10px;
}
#search{
float: left;
width: 90%;
border: none;
}
#search_button{
width: 8%;
margin-right: 5px;
}
#search_button i{
font-size: 17px;
margin-top: 10px;
}
ul.share-buttons{
list-style: none;
padding: 0;
Expand Down Expand Up @@ -231,4 +252,5 @@ ul.share-buttons .sr-only{
margin:-2px -50px 0 -50px;
text-align:center;
border-radius:0 0 10px 10px;
}
}

15 changes: 15 additions & 0 deletions code/js/popup.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion code/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@

<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">
<input id="search" class="form-control" type="search" size="128" placeholder=" Search any code">
<div id="search_button"><i class="fa fa-search"></i></div>
</div>
<div id="pop-tags"></div>
<center>
Expand Down Expand Up @@ -90,6 +91,9 @@
<div id="timeZone_converter_modal"></div>

</div>

<div id="pop-tags"></div>

</div><br>

</div><br>
Expand Down