1234567891011121314151617181920212223242526272829303132 |
- .search-module {
- position: relative;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .search-module > .search-icon {
- position: absolute;
- background: url(/img/search.svg);
- width: 25px;
- height: 25px;
- background-size: cover;
- opacity: 0.5;
- left: 2px;
- }
- .search-module > .search-input {
- width: 100%;
- font-family: 'Play', monospace, sans-serif;
- font-size: 16px;
- padding: 2px 5px 2px 25px;
- }
- .search-module > .search-input:focus {
- outline: none;
- outline-width: 0;
- box-shadow: none;
- -moz-box-shadow: none;
- -webkit-box-shadow: none;
- }
|