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;