Skip to content

Instantly share code, notes, and snippets.

@mohdashraf010897
Last active February 24, 2022 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohdashraf010897/3fda063d3c34a824a0e6ab22da5d15dc to your computer and use it in GitHub Desktop.
Save mohdashraf010897/3fda063d3c34a824a0e6ab22da5d15dc to your computer and use it in GitHub Desktop.
body {
margin: 0;
background: #f7f7f7;
}
.filter input {
height: unset;
}
.navbar {
padding: 15px;
background: #181c2b;
display: flex;
z-index: 4;
align-items: center;
justify-content: flex-start;
}
.navbar h2 {
margin: 0;
color: #eee;
width: 25%;
}
.navbar h2 .logo {
padding: 8px;
border-radius: 4px;
margin-right: 8px;
background: #3940ff;
box-shadow: -4px 4px #373cc3;
}
.search-box {
width: 60%;
}
.search-box input {
border: 0;
border-radius: 2px;
}
.search-box ul {
border: 1px solid #eee;
border-radius: 2px;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.filters-container {
display: flex;
flex-direction: column;
width: 25%;
padding: 10px;
}
.container {
display: flex;
flex-direction: row;
}
.filter {
background: white;
padding: 10px;
margin: 10px 0;
box-shadow: 0 0 2px rgba(24, 28, 43, 0.2);
color: #181c2b;
}
.result-list-container {
overflow: hidden;
width: 75%;
margin-bottom: 10px;
padding: 10px;
}
.books-container {
display: flex;
padding: 10px;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.book-content {
flex-grow: 1;
width: 200px;
max-width: 250px;
margin: 10px;
transition: all ease 0.1s;
overflow: hidden;
}
.image {
text-align: center;
position: relative;
}
.image img {
height: 250px;
}
.rating {
position: absolute;
left: 250px;
top: 0px;
transition: all ease 0.2s;
padding: 5px 8px;
display: flex;
align-items: center;
font-weight: 700;
border-radius: 2px;
background: rgba(24, 28, 43, 0.8);
color: #eee;
}
.details {
position: absolute;
left: -300px;
width: 100%;
bottom: 0;
border-radius: 2px;
padding: 5px 8px;
transition: all ease 0.2s;
background: rgba(24, 28, 43, 0.9);
}
.book-content:hover .details {
left: 0;
text-align: left;
}
.details h4,
p {
margin: 5px 0;
}
.details h4 {
color: #eee;
}
.details p {
color: #f7f7f7;
}
.book-content:hover .rating {
left: 0;
}
.toggle {
display: none;
}
.appbase {
display: none;
padding: 0;
width: 0;
}
@media (max-width: 768px) {
.toggle {
padding: 5px 8px;
color: #eee;
background: #0b6aff;
position: fixed;
bottom: 0;
font-size: 12px;
width: 100%;
z-index: 2;
display: inline;
outline: none;
cursor: pointer;
}
.navbar {
justify-content: space-between;
}
.search-box {
width: 40%;
}
.filters-container {
display: none;
}
.result-list-container.full {
width: 100%;
display: block;
}
.result-list-container {
width: 0%;
display: none;
}
.filters-container.full {
width: 100%;
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment