Skip to content

Commit

Permalink
searchbar upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Faisal N committed Oct 11, 2023
1 parent ab691da commit aee5ec8
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 14 deletions.
2 changes: 1 addition & 1 deletion frontend/partials/header.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="announcement">
<a href="<%- vars.domain %>/newspapers/<%= cms.newspapers[cms.newspapers.length - 1].slug %>">Latest Newspaper</a>
</div>
<div class="main">
<div class="main <% if (title === '') { %>home<% } %>">
<a href="<%- vars.domain %>/">
<img src="<%- vars.asset_prefix %><%= cms.siteDetails[0].logo.path %>" alt="<%= cms.siteDetails[0].title %>">
</a>
Expand Down
50 changes: 37 additions & 13 deletions frontend/public/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@
border-radius: 100px;
}

header .main {
flex-direction: column !important;
}

header .main a img {
height: 50px !important;
}

header .main a img,
footer .inner .top img {
max-width: 70vw;
Expand All @@ -63,6 +71,10 @@
right: unset !important;
}

header .main .search form input:hover, header .main .search form input:focus {
width: 50vw !important;
}

.hero {
height: 100vh !important;
width: 85% !important;
Expand Down Expand Up @@ -223,7 +235,7 @@ header .announcement a {

header .main {
display: flex;
flex-direction: column;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 20px;
Expand All @@ -232,15 +244,23 @@ header .main {
border-bottom: 1px solid lightgray;
}

header .main.home {
flex-direction: column !important;
}

header .main a {
padding: 10px;
}

header .main a img {
height: 50px;
height: 39px;
padding-right: 10px;
}

header .main.home a img {
height: 50px !important;
}

header .main .links {
display: flex;
align-items: center;
Expand All @@ -249,7 +269,6 @@ header .main .links {
}

header .main .search {
position: fixed;
top: 40px;
right: 40px;
display: flex;
Expand All @@ -260,10 +279,15 @@ header .main .search {
z-index: 100;
}

header .main.home .search {
position: fixed;
}

header .main .search img {
height: 25px;
rotate: 90deg;
cursor: pointer;
height: 15px;
rotate: 90deg;
cursor: pointer;
margin-left: -45px;
}

header .main .search form {
Expand All @@ -276,13 +300,13 @@ header .main .search.active form {
}

header .main .search form input {
width: 15vw;
border-radius: 5px;
border: 2px solid var(--text);
background-color: var(--background);
color: var(--text);
padding: 6px 10px;
transition: 0.5s;
width: 15vw;
border-radius: 24px;
border: 2px solid #D2D2D2;
background-color: var(--background);
color: var(--text);
padding: 8px 12px;
transition: 0.5s;
}

header .main .search form input:hover,
Expand Down

0 comments on commit aee5ec8

Please sign in to comment.