-
-
Save evgeniy1204/062ae2054c4b0a02bb3a535b000e8655 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<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> |
This file contains hidden or 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
.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