Untitled

mail@pastecode.io avatar
unknown
scss
a year ago
1.2 kB
2
Indexable
Never
* {
  margin: 0;
  padding: 0;
}

.searchBar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  row-gap: 1.5rem;
  background: linear-gradient(89.01deg,#3ab0e4 -10.97%,#1abc9c 99.15%);

  h3 {
    color: mintcream;
    font-size: 180%;
    text-align: center;
    padding-bottom: 0.3rem;
  }
  p {
    color: mintcream;
    font-weight: bold;
    opacity: 0.8;
    text-align: center;
  }
}

.searchBar--search {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  .searchBar-search {
    width: 100%;
    direction: rtl;

    button {
      width: max-content;
      padding: 0.5rem 18px;
      background-color: #ffd68a;
      text-decoration: none;
      outline: none;
      color: #222;
      font-size: 14px;
      font-weight: 400;
      border-radius: 7px;
      border: none;
      border-bottom: 2px solid #fac460;
    }

    select, input {
      width: max-content;
      padding: 0.5rem 18px;
      font-size: 14px;
      font-weight: 400;
      border-radius: 7px;
      outline: none;
      border: none;
    }
  }
}