From 867077bb47aa147573fe6ff3ec6439355a70732c Mon Sep 17 00:00:00 2001 From: Luigi Date: Thu, 4 Jul 2019 12:54:04 -0300 Subject: [PATCH] Clases para logistica pedido --- src/sass/general.scss | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/sass/general.scss b/src/sass/general.scss index 75760e8..53128ba 100644 --- a/src/sass/general.scss +++ b/src/sass/general.scss @@ -38,6 +38,40 @@ input::-webkit-inner-spin-button { } } +.btn-dashed{ + border-style: dashed !important; + border-width: 3px; + border-color: white; + background-color: #dedfe0; +} + +.marcador { + position: absolute; + right: 97px; + bottom: -50px; +} + +.informacion{ + position: absolute; + right: 18px; + bottom: 5px; +} + +.flashit{ + -webkit-animation: flash linear 1s infinite; + animation: flash linear 1s infinite; +} +@-webkit-keyframes flash { + 0% { opacity: 1; } + 50% { opacity: .6; } + 100% { opacity: 1; } +} +@keyframes flash { + 0% { opacity: 1; } + 50% { opacity: .6; } + 100% { opacity: 1; } +} + .btn-outline-debo{ background-color: transparent; color: $primary; -- 1.9.1