Commit 1a8c5bd64c9bacde0f1b3268fac49e3192545572
1 parent
971fa33108
Exists in
master
and in
1 other branch
Agregada clase css.
Showing
1 changed file
with
8 additions
and
0 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 | background-color: #f0f0f0; | 7 | background-color: #f0f0f0; |
8 | font-family: bahnschrift; | 8 | font-family: bahnschrift; |
9 | overflow: hidden !important; | 9 | overflow: hidden !important; |
10 | } | 10 | } |
11 | 11 | ||
12 | .blur { | 12 | .blur { |
13 | filter: blur(10px); | 13 | filter: blur(10px); |
14 | -webkit-filter: blur(10px); | 14 | -webkit-filter: blur(10px); |
15 | } | 15 | } |
16 | 16 | ||
17 | .disable-user-select { | 17 | .disable-user-select { |
18 | -webkit-user-select: none; | 18 | -webkit-user-select: none; |
19 | -moz-user-select: none; | 19 | -moz-user-select: none; |
20 | -ms-user-select: none; | 20 | -ms-user-select: none; |
21 | user-select: none; | 21 | user-select: none; |
22 | } | 22 | } |
23 | 23 | ||
24 | .blue-gradient { | 24 | .blue-gradient { |
25 | background: linear-gradient(0deg, #ffffff00, $white); | 25 | background: linear-gradient(0deg, #ffffff00, $white); |
26 | } | 26 | } |
27 | 27 | ||
28 | .rounded { | 28 | .rounded { |
29 | border-radius: 1.5rem !important; | 29 | border-radius: 1.5rem !important; |
30 | } | 30 | } |
31 | 31 | ||
32 | .rounded-top-sm { | 32 | .rounded-top-sm { |
33 | border-top-left-radius: 0.75rem !important; | 33 | border-top-left-radius: 0.75rem !important; |
34 | border-top-right-radius: 0.75rem !important; | 34 | border-top-right-radius: 0.75rem !important; |
35 | } | 35 | } |
36 | 36 | ||
37 | .rounded-sm { | 37 | .rounded-sm { |
38 | border-radius: 0.75rem !important; | 38 | border-radius: 0.75rem !important; |
39 | } | 39 | } |
40 | 40 | ||
41 | .card-effect { | 41 | .card-effect { |
42 | &:active { | 42 | &:active { |
43 | background-color: #c9c9c9b3 !important; | 43 | background-color: #c9c9c9b3 !important; |
44 | transition: background-color 0.5s; | 44 | transition: background-color 0.5s; |
45 | } | 45 | } |
46 | &:focus { | 46 | &:focus { |
47 | background-color: #c9c9c9b3 !important; | 47 | background-color: #c9c9c9b3 !important; |
48 | transition: background-color 0.5s; | 48 | transition: background-color 0.5s; |
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||
52 | .overflow-scroll { | 52 | .overflow-scroll { |
53 | overflow-y: auto !important; | 53 | overflow-y: auto !important; |
54 | overflow-x: hidden !important; | 54 | overflow-x: hidden !important; |
55 | &::-webkit-scrollbar { | 55 | &::-webkit-scrollbar { |
56 | width: 1em; | 56 | width: 1em; |
57 | } | 57 | } |
58 | &::-webkit-scrollbar-track { | 58 | &::-webkit-scrollbar-track { |
59 | border-radius: 10px; | 59 | border-radius: 10px; |
60 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); | 60 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); |
61 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); | 61 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); |
62 | background-color: $white; | 62 | background-color: $white; |
63 | } | 63 | } |
64 | &::-webkit-scrollbar-thumb { | 64 | &::-webkit-scrollbar-thumb { |
65 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); | 65 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); |
66 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); | 66 | -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); |
67 | outline: 1px solid slategrey; | 67 | outline: 1px solid slategrey; |
68 | border-radius: 10px; | 68 | border-radius: 10px; |
69 | height: 12px; | 69 | height: 12px; |
70 | &:active { | 70 | &:active { |
71 | box-shadow: inset 0 0 8px $primary; | 71 | box-shadow: inset 0 0 8px $primary; |
72 | -webkit-box-shadow: inset 0 0 8px $primary; | 72 | -webkit-box-shadow: inset 0 0 8px $primary; |
73 | } | 73 | } |
74 | } | 74 | } |
75 | &::-webkit-scrollbar-corner { | 75 | &::-webkit-scrollbar-corner { |
76 | border-radius: 10px; | 76 | border-radius: 10px; |
77 | } | 77 | } |
78 | } | 78 | } |
79 | 79 | ||
80 | .bg-gray { | 80 | .bg-gray { |
81 | background-color: #e6e6e6; | 81 | background-color: #e6e6e6; |
82 | } | 82 | } |
83 | 83 | ||
84 | .bg-primary-gradient { | 84 | .bg-primary-gradient { |
85 | background: linear-gradient(135deg, rgba(40, 112, 175, 1) 0%, rgba(0, 32, 66, 1) 100%); | 85 | background: linear-gradient(135deg, rgba(40, 112, 175, 1) 0%, rgba(0, 32, 66, 1) 100%); |
86 | } | 86 | } |
87 | 87 | ||
88 | .bg-primary-gradient-horizontal { | 88 | .bg-primary-gradient-horizontal { |
89 | background: linear-gradient(90deg, rgba(40, 112, 175, 1) 0%, rgba(0, 32, 66, 1) 100%); | 89 | background: linear-gradient(90deg, rgba(40, 112, 175, 1) 0%, rgba(0, 32, 66, 1) 100%); |
90 | } | 90 | } |
91 | 91 | ||
92 | .icon-dim { | 92 | .icon-dim { |
93 | height: 40px !important; | 93 | height: 40px !important; |
94 | width: auto !important; | 94 | width: auto !important; |
95 | background-color: white !important; | 95 | background-color: white !important; |
96 | } | 96 | } |
97 | 97 | ||
98 | .text-purple { | 98 | .text-purple { |
99 | color: $purple; | 99 | color: $purple; |
100 | } | 100 | } |
101 | 101 | ||
102 | .vh-70 { | 102 | .vh-70 { |
103 | min-height: auto !important; | 103 | min-height: auto !important; |
104 | max-height: 70vh !important; | 104 | max-height: 70vh !important; |
105 | } | 105 | } |
106 | 106 | ||
107 | .vh-60 { | 107 | .vh-60 { |
108 | min-height: auto !important; | 108 | min-height: auto !important; |
109 | max-height: 60vh !important; | 109 | max-height: 60vh !important; |
110 | } | 110 | } |
111 | 111 | ||
112 | .vh-50 { | 112 | .vh-50 { |
113 | min-height: auto !important; | 113 | min-height: auto !important; |
114 | max-height: 50vh !important; | 114 | max-height: 50vh !important; |
115 | } | 115 | } |
116 | 116 | ||
117 | .spinner-lg { | 117 | .spinner-lg { |
118 | width: 3rem !important; | 118 | width: 3rem !important; |
119 | height: 3rem !important; | 119 | height: 3rem !important; |
120 | } | 120 | } |
121 | 121 | ||
122 | .sidebar { | 122 | .sidebar { |
123 | right: 0; | 123 | right: 0; |
124 | } | 124 | } |
125 | 125 | ||
126 | .background-image { | 126 | .background-image { |
127 | background-repeat: no-repeat; | 127 | background-repeat: no-repeat; |
128 | background-size: cover; | 128 | background-size: cover; |
129 | position: fixed; | 129 | position: fixed; |
130 | } | 130 | } |
131 | 131 | ||
132 | .rounded-bottom-right { | 132 | .rounded-bottom-right { |
133 | border-bottom-right-radius: 10rem; | 133 | border-bottom-right-radius: 10rem; |
134 | &:before { | 134 | &:before { |
135 | border-radius: 0 40px 40px 0; | 135 | border-radius: 0 40px 40px 0; |
136 | background-color: #fff; | 136 | background-color: #fff; |
137 | } | 137 | } |
138 | } | 138 | } |
139 | 139 | ||
140 | .rounded-top-left { | 140 | .rounded-top-left { |
141 | border-top-left-radius: 10rem; | 141 | border-top-left-radius: 10rem; |
142 | } | 142 | } |
143 | 143 | ||
144 | .bg-gray { | 144 | .bg-gray { |
145 | background-color: #cccccc; | 145 | background-color: #cccccc; |
146 | } | 146 | } |
147 | 147 | ||
148 | .cdk-overlay-container { | 148 | .cdk-overlay-container { |
149 | position: absolute; | 149 | position: absolute; |
150 | top: 65%; | 150 | top: 65%; |
151 | width: 100%; | 151 | width: 100%; |
152 | } | 152 | } |
153 | |||
154 | .min-h-40 { | ||
155 | min-height: 40px; | ||
156 | } | ||
157 | |||
158 | .min-h-55 { | ||
159 | min-height: 55px; | ||
160 | } | ||
153 | 161 |