Commit 338bf710b96f3592124f926d879c29f85fe5f6f4
1 parent
bb26145167
Exists in
master
and in
1 other branch
Agregada clase.css
Showing
1 changed file
with
5 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 { | ||
| 113 | min-height: auto !important; | ||
| 114 | max-height: 50vh !important; | ||
| 115 | } | ||
| 116 | |||
| 112 | .spinner-lg { | 117 | .spinner-lg { |
| 113 | width: 3rem !important; | 118 | width: 3rem !important; |
| 114 | height: 3rem !important; | 119 | height: 3rem !important; |
| 115 | } | 120 | } |
| 116 | 121 | ||
| 117 | .sidebar { | 122 | .sidebar { |
| 118 | right: 0; | 123 | right: 0; |
| 119 | } | 124 | } |
| 120 | 125 | ||
| 121 | .background-image { | 126 | .background-image { |
| 122 | background-repeat: no-repeat; | 127 | background-repeat: no-repeat; |
| 123 | background-size: cover; | 128 | background-size: cover; |
| 124 | position: fixed; | 129 | position: fixed; |
| 125 | } | 130 | } |
| 126 | 131 | ||
| 127 | .rounded-bottom-right { | 132 | .rounded-bottom-right { |
| 128 | border-bottom-right-radius: 10rem; | 133 | border-bottom-right-radius: 10rem; |
| 129 | &:before { | 134 | &:before { |
| 130 | border-radius: 0 40px 40px 0; | 135 | border-radius: 0 40px 40px 0; |
| 131 | background-color: #fff; | 136 | background-color: #fff; |
| 132 | } | 137 | } |
| 133 | } | 138 | } |
| 134 | 139 | ||
| 135 | .rounded-top-left { | 140 | .rounded-top-left { |
| 136 | border-top-left-radius: 10rem; | 141 | border-top-left-radius: 10rem; |
| 137 | } | 142 | } |
| 138 | 143 | ||
| 139 | .bg-gray { | 144 | .bg-gray { |
| 140 | background-color: #cccccc; | 145 | background-color: #cccccc; |
| 141 | } | 146 | } |
| 142 | 147 |