Created
January 3, 2018 01:58
-
-
Save siddharthlatest/4bcb735139f0a835eb3adc7673b6c8bb to your computer and use it in GitHub Desktop.
booksearch app styles
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
.navbar { | |
width: 100%; | |
position: fixed; | |
top: 0; | |
left: 0; | |
z-index: 1; | |
display: flex; | |
align-items: center; | |
background-color: #0B6AFF; | |
color: #fff; | |
height: 52px; | |
font-size: 15px; | |
letter-spacing: 0.05rem; | |
} | |
.logo { | |
margin-left: 16px; | |
float: left; | |
} | |
.datasearch { | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.datasearch .searchbox { | |
min-width: 400px; | |
border-radius: 30px; | |
padding: 5px 16px 5px 30px; | |
} | |
.suggestionlist { | |
color: #424242; | |
width: 90%; | |
margin-left: 5%; | |
} | |
.display { | |
display: flex; | |
margin-top: 60px; | |
} | |
.leftSidebar { | |
width: 320px; | |
height: 100%; | |
padding: 15px 20px; | |
position: fixed; | |
left: 0; | |
right: 0; | |
border-right: 1px solid #f0f0f0; | |
} | |
.mainBar { | |
width: calc(100% - 320px); | |
position: relative; | |
left: 320px; | |
padding: 0px 30px; | |
background-color: #fefefe; | |
} | |
.result-data .result-image { | |
background-size: cover; | |
max-height: 200px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment