Compare View
Commits (5)
-
Develop See merge request !125
-
Develop See merge request !129
-
Master See merge request !136
-
Develop See merge request !137
Showing
1 changed file
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; |