Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6635 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6635 Rev 6707
Línea 1... Línea 1...
1
.searchBox {
1
.searchBox {
2
  padding: 2rem;
2
  padding: 2rem;
3
  background-color: $bg-color;
3
  background-color: $bg-color;
4
  position: relative;
4
  position: relative;
5
  z-index: 999;
5
  z-index: 999;
-
 
6
 
6
  form {
7
  form {
7
    display: flex;
8
    display: flex;
8
    align-items: center;
9
    align-items: center;
9
  }
10
  }
-
 
11
 
10
  input {
12
  input {
11
    width: 100%;
13
    width: 100%;
12
    padding: 0.5rem 1rem;
14
    padding: 0.5rem 1rem;
13
    border: none;
15
    border: none;
14
    border-radius: 30px 0 0 30px;
16
    border-radius: 30px 0 0 30px;
15
    height: 40px;
17
    height: 40px;
16
  }
18
  }
-
 
19
 
17
  button {
20
  button {
18
    font-size: 1.5rem;
21
    font-size: 1.5rem;
19
    height: 40px;
22
    height: 40px;
20
    background-color: $bg-color;
23
    background-color: $bg-color;
21
    border-radius: 0 30px 30px 0;
24
    border-radius: 0 30px 30px 0;
Línea 45... Línea 48...
45
 
48
 
46
@keyframes fadeIn {
49
@keyframes fadeIn {
47
  0% {
50
  0% {
48
    transform: scaleY(0);
51
    transform: scaleY(0);
-
 
52
  }
49
  }
53
 
50
  100% {
54
  100% {
51
    transform: scaleY(1);
55
    transform: scaleY(1);
52
  }
56
  }
-
 
57
}
53
}
58
 
54
@keyframes fadeOut {
59
@keyframes fadeOut {
55
  0% {
60
  0% {
56
    transform: scaleY(1);
61
    transform: scaleY(1);
-
 
62
  }
57
  }
63
 
58
  100% {
64
  100% {
59
    transform: scaleY(0);
65
    transform: scaleY(0);
60
  }
66
  }
61
}
67
}