Commit 08da9f7ace73fa191dd1eccf2f6fd7aa58b331db
1 parent
51b3dc6e32
Exists in
master
and in
1 other branch
arreglo en estilos
Showing
1 changed file
with
6 additions
and
12 deletions
Show diff stats
src/styles.scss
1 | @import "./assets/scss/animation.scss"; | 1 | @import "./assets/scss/animation.scss"; |
2 | @import "./assets/scss/bootstrap-override.scss"; | 2 | @import "./assets/scss/bootstrap-override.scss"; |
3 | @import "../node_modules/bootstrap/scss/_variables.scss"; | 3 | @import "../node_modules/bootstrap/scss/_variables.scss"; |
4 | 4 | ||
5 | html, | 5 | html, |
6 | body { | 6 | body { |
7 | height: 100%; | 7 | height: 100%; |
8 | background: linear-gradient(0deg, #e6e6e6, #fff); | 8 | background: linear-gradient(0deg, #e6e6e6, #fff); |
9 | font-family: bahnschrift; | 9 | font-family: bahnschrift; |
10 | overflow: hidden !important; | 10 | overflow: hidden !important; |
11 | } | 11 | } |
12 | 12 | ||
13 | .blur { | 13 | .blur { |
14 | filter: blur(10px); | 14 | filter: blur(10px); |
15 | -webkit-filter: blur(10px); | 15 | -webkit-filter: blur(10px); |
16 | } | 16 | } |
17 | 17 | ||
18 | app-pago-con-tarjeta, | ||
18 | .disable-user-select { | 19 | .disable-user-select { |
19 | -webkit-user-select: none; | 20 | -webkit-user-select: none; |
20 | -moz-user-select: none; | 21 | -moz-user-select: none; |
21 | -ms-user-select: none; | 22 | -ms-user-select: none; |
22 | user-select: none; | 23 | user-select: none; |
23 | } | 24 | } |
24 | 25 | ||
25 | .blue-gradient { | 26 | .blue-gradient { |
26 | background: linear-gradient(0deg, #ffffff00, $white); | 27 | background: linear-gradient(0deg, #ffffff00, $white); |
27 | } | 28 | } |
28 | 29 | ||
29 | .rounded { | 30 | .rounded { |
30 | border-radius: 1.5rem !important; | 31 | border-radius: 1.5rem !important; |
31 | } | 32 | } |
32 | 33 | ||
33 | .rounded-top-sm { | 34 | .rounded-top-sm { |
34 | border-top-left-radius: 0.75rem !important; | 35 | border-top-left-radius: 0.75rem !important; |
35 | border-top-right-radius: 0.75rem !important; | 36 | border-top-right-radius: 0.75rem !important; |
36 | } | 37 | } |
37 | 38 | ||
38 | .rounded-sm { | 39 | .rounded-sm { |
39 | border-radius: 0.75rem !important; | 40 | border-radius: 0.75rem !important; |
40 | } | 41 | } |
41 | 42 | ||
42 | .card-effect { | 43 | .card-effect { |
44 | transition: background-color 0.3s; | ||
43 | &:active { | 45 | &:active { |
44 | background-color: #c9c9c9b3 !important; | 46 | background-color: #c9c9c9b3 !important; |
45 | transition: background-color 0.5s; | 47 | transition: background-color 0.3s; |
46 | } | 48 | } |
47 | &:focus { | 49 | &:focus { |
48 | background-color: #c9c9c9b3 !important; | 50 | background-color: #c9c9c9b3 !important; |
49 | transition: background-color 0.5s; | 51 | transition: background-color 0.3s; |
50 | } | 52 | } |
51 | } | 53 | } |
52 | 54 | ||
53 | .overflow-scroll { | 55 | .overflow-scroll { |
54 | overflow-y: auto !important; | 56 | overflow-y: auto !important; |
55 | overflow-x: hidden !important; | 57 | overflow-x: hidden !important; |
56 | &::-webkit-scrollbar { | 58 | &::-webkit-scrollbar { |
57 | width: 0.75em; | 59 | width: 0.75em; |
58 | } | 60 | } |
59 | &::-webkit-scrollbar-track { | 61 | &::-webkit-scrollbar-track { |
60 | border-radius: 10px; | 62 | border-radius: 10px; |
61 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); | 63 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); |
62 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); | 64 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); |
63 | background-color: $white; | 65 | background-color: $white; |
64 | } | 66 | } |
65 | &::-webkit-scrollbar-thumb { | 67 | &::-webkit-scrollbar-thumb { |
66 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); | 68 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); |
67 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); | 69 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); |
68 | outline: 1px solid slategrey; | 70 | outline: 1px solid slategrey; |
69 | border-radius: 10px; | 71 | border-radius: 10px; |
70 | height: 12px; | 72 | height: 12px; |
71 | &:active { | 73 | &:active { |
72 | box-shadow: inset 0 0 8px $primary; | 74 | box-shadow: inset 0 0 8px $primary; |
73 | -webkit-box-shadow: inset 0 0 8px $primary; | 75 | -webkit-box-shadow: inset 0 0 8px $primary; |
74 | } | 76 | } |
75 | } | 77 | } |
76 | &::-webkit-scrollbar-corner { | 78 | &::-webkit-scrollbar-corner { |
77 | border-radius: 10px; | 79 | border-radius: 10px; |
78 | } | 80 | } |
79 | } | 81 | } |
80 | 82 | ||
81 | .bg-gray { | 83 | .bg-gray { |
82 | background-color: #e6e6e6; | 84 | background-color: #e6e6e6; |
83 | } | 85 | } |
84 | 86 | ||
85 | .bg-primary-gradient { | 87 | .bg-primary-gradient { |
86 | background: linear-gradient( | 88 | background: linear-gradient(135deg, rgba(40, 112, 175, 1) 0%, rgba(0, 32, 66, 1) 100%); |
87 | 135deg, | ||
88 | rgba(40, 112, 175, 1) 0%, | ||
89 | rgba(0, 32, 66, 1) 100% | ||
90 | ); | ||
91 | } | 89 | } |
92 | 90 | ||
93 | .bg-primary-gradient-horizontal { | 91 | .bg-primary-gradient-horizontal { |
94 | background: linear-gradient( | 92 | background: linear-gradient(90deg, rgba(40, 112, 175, 1) 0%, rgba(0, 32, 66, 1) 100%); |
95 | 90deg, | ||
96 | rgba(40, 112, 175, 1) 0%, | ||
97 | rgba(0, 32, 66, 1) 100% | ||
98 | ); | ||
99 | } | 93 | } |
100 | 94 | ||
101 | .icon-dim { | 95 | .icon-dim { |
102 | height: 40px !important; | 96 | height: 40px !important; |
103 | width: auto !important; | 97 | width: auto !important; |
104 | background-color: white !important; | 98 | background-color: white !important; |
105 | } | 99 | } |
106 | 100 | ||
107 | .text-purple { | 101 | .text-purple { |
108 | color: $purple; | 102 | color: $purple; |
109 | } | 103 | } |
110 | 104 | ||
111 | .vh-70 { | 105 | .vh-70 { |
112 | max-height: 70vh !important; | 106 | max-height: 70vh !important; |
113 | } | 107 | } |
114 | 108 | ||
115 | .vh-60 { | 109 | .vh-60 { |
116 | max-height: 60vh !important; | 110 | max-height: 60vh !important; |
117 | } | 111 | } |
118 | 112 | ||
119 | .vh-50 { | 113 | .vh-50 { |
120 | max-height: 50vh !important; | 114 | max-height: 50vh !important; |
121 | } | 115 | } |
122 | 116 | ||
123 | .vh-15 { | 117 | .vh-15 { |
124 | max-height: 15vh !important; | 118 | max-height: 15vh !important; |
125 | } | 119 | } |
126 | 120 | ||
127 | .spinner-lg { | 121 | .spinner-lg { |
128 | width: 3rem !important; | 122 | width: 3rem !important; |
129 | height: 3rem !important; | 123 | height: 3rem !important; |
130 | } | 124 | } |
131 | 125 | ||
132 | .sidebar { | 126 | .sidebar { |
133 | right: 0; | 127 | right: 0; |
134 | } | 128 | } |
135 | 129 | ||
136 | .background-image { | 130 | .background-image { |
137 | background-repeat: no-repeat; | 131 | background-repeat: no-repeat; |
138 | background-size: cover; | 132 | background-size: cover; |
139 | position: fixed; | 133 | position: fixed; |
140 | } | 134 | } |
141 | 135 | ||
142 | .rounded-bottom-right { | 136 | .rounded-bottom-right { |
143 | border-bottom-right-radius: 10rem; | 137 | border-bottom-right-radius: 10rem; |
144 | &:before { | 138 | &:before { |
145 | border-radius: 0 40px 40px 0; | 139 | border-radius: 0 40px 40px 0; |
146 | background-color: #fff; | 140 | background-color: #fff; |
147 | } | 141 | } |
148 | } | 142 | } |
149 | 143 | ||
150 | .rounded-top-left { | 144 | .rounded-top-left { |
151 | border-top-left-radius: 10rem; | 145 | border-top-left-radius: 10rem; |
152 | } | 146 | } |
153 | 147 | ||
154 | .bg-gray { | 148 | .bg-gray { |
155 | background-color: #cccccc; | 149 | background-color: #cccccc; |
156 | } | 150 | } |
157 | 151 | ||
158 | .cdk-overlay-container { | 152 | .cdk-overlay-container { |
159 | position: absolute; | 153 | position: absolute; |
160 | top: 65%; | 154 | top: 65%; |
161 | width: 100%; | 155 | width: 100%; |
162 | } | 156 | } |
163 | 157 | ||
164 | .min-h-40 { | 158 | .min-h-40 { |
165 | min-height: 40px; | 159 | min-height: 40px; |
166 | } | 160 | } |
167 | 161 | ||
168 | .min-h-55 { | 162 | .min-h-55 { |
169 | min-height: 55px; | 163 | min-height: 55px; |
170 | } | 164 | } |
171 | 165 | ||
172 | .pagination { | 166 | .pagination { |
173 | justify-content: center !important; | 167 | justify-content: center !important; |
174 | display: flex !important; | 168 | display: flex !important; |
175 | } | 169 | } |
176 | 170 | ||
177 | .z-index-0 { | 171 | .z-index-0 { |
178 | z-index: 0; | 172 | z-index: 0; |
179 | } | 173 | } |
180 | 174 | ||
181 | .w-15 { | 175 | .w-15 { |
182 | width: 15% !important; | 176 | width: 15% !important; |