Skip to content

Instantly share code, notes, and snippets.

@evgeniy1204
Created July 18, 2017 13:43
Show Gist options
  • Save evgeniy1204/062ae2054c4b0a02bb3a535b000e8655 to your computer and use it in GitHub Desktop.
Save evgeniy1204/062ae2054c4b0a02bb3a535b000e8655 to your computer and use it in GitHub Desktop.
<div class="search-block">
<div class="block-logo item-block">
<img src="https://gc.onliner.by/images/logo/onliner_logo.v3.png?token=1500276935">
</div>
<div class="block-search item-block">
<input type="text" name="search" placeholder="Введите текст для опоиска всякой хуйни" />
</div>
<div class="block-social item-block">
<button>Войти</button>
</div>
</div>
.search-block {
width: 100%;
}
.search-block .item-block {
float: left;
text-align: center;
width: calc(100%/3);
}
.search-block .item-block input {
width: 100%;
height: 40px;
}
.search-block .item-block button {
border: 1px solid #ccc;
height: 40px;
width: 150px;
background: #fff;
outline: none;
border-radius: 3px 0 0 3px;
}
.search-block .item-block button:hover {
background: #999;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment