Skip to content
Snippets Groups Projects
Select Git revision
  • dd3260b3aaabf8447a3b2362c086dd0f8fd9a07b
  • master default
  • clement
  • fix_requirements
  • new_signup
  • interface_admin
  • hamza
  • dev
  • test
  • melissa
  • context_sheet
  • sorties_new
  • Seon82-patch-2
  • export_bdd
  • refactor/participation-user-link
15 results

utils.py

Blame
  • SearchBar.vue 877 B
    <template>
       <input type="text" v-model="input" placeholder="Search movies..." />
    </template>
    
    <script>
    
    </script>
    
    <style scoped>
    @import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
    
    input {
      display: block;
      width: 350px;
      margin: 20px auto;
      padding: 10px 45px;
      background: white url("../assets/loupe.png") no-repeat 15px center;
      background-size: 15px 15px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }
    
    .item {
      width: 350px;
      margin: 0 auto 10px auto;
      padding: 10px 20px;
      color: white;
      border-radius: 5px;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    }
    
    .movie {
      background-color: rgb(97, 62, 252);
      cursor: pointer;
    }
    
    .error {
      background-color: tomato;
    }
    </style>