Commit 867077bb47aa147573fe6ff3ec6439355a70732c

Authored by Luigi
1 parent c309173490
Exists in master

Clases para logistica pedido

Showing 1 changed file with 34 additions and 0 deletions   Show diff stats
src/sass/general.scss
... ... @@ -38,6 +38,40 @@ input::-webkit-inner-spin-button {
38 38 }
39 39 }
40 40  
  41 +.btn-dashed{
  42 + border-style: dashed !important;
  43 + border-width: 3px;
  44 + border-color: white;
  45 + background-color: #dedfe0;
  46 +}
  47 +
  48 +.marcador {
  49 + position: absolute;
  50 + right: 97px;
  51 + bottom: -50px;
  52 +}
  53 +
  54 +.informacion{
  55 + position: absolute;
  56 + right: 18px;
  57 + bottom: 5px;
  58 +}
  59 +
  60 +.flashit{
  61 + -webkit-animation: flash linear 1s infinite;
  62 + animation: flash linear 1s infinite;
  63 +}
  64 +@-webkit-keyframes flash {
  65 + 0% { opacity: 1; }
  66 + 50% { opacity: .6; }
  67 + 100% { opacity: 1; }
  68 +}
  69 +@keyframes flash {
  70 + 0% { opacity: 1; }
  71 + 50% { opacity: .6; }
  72 + 100% { opacity: 1; }
  73 +}
  74 +
41 75 .btn-outline-debo{
42 76 background-color: transparent;
43 77 color: $primary;