Skip to content
Snippets Groups Projects
Select Git revision
  • 18cdeff1911b820cc45c30992f9b88869f23a5ec
  • master default protected
  • minion
  • development
4 results

SearchBar.scss

Blame
  • SearchBar.scss 787 B
    
    $primary-color: #fff;
    .inputBox{
        display: flex;
        width: 250px;
        border-radius: 50px;
        overflow: hidden;
        background-color: $primary-color;
        padding: 5px;
        transition: width .15s cubic-bezier(0.68, -0.55, 0.27, 1.55)
    }
    .focused{
        width: 380px!important;
        transition: width .15s cubic-bezier(0.68, -0.55, 0.27, 1.55)
    }
    .search-control {
        display: block;
        width: 100%;
        height: calc(1.5em + 0.75rem + 2px);
        padding: 2px;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        outline: $primary-color;
        background-color: $primary-color;
        background-clip: padding-box;
        border: 0px solid $primary-color !important;
       
        border-radius: 50px;
    }
    .icon{
        margin:10px;
        font-size: 15px;
       cursor: pointer;
      color: gray;
    }