Commit 39e477ba74e2e52780b1cbbef16274f1f8d6f4ce
1 parent
b9d188add1
Exists in
master
Cambio de fuente.
Showing
1 changed file
with
1 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 | overflow: hidden; | 8 | overflow: hidden; |
9 | font-family: bahnschrift; | ||
9 | } | 10 | } |
10 | 11 | ||
11 | .blur { | 12 | .blur { |
12 | filter: blur(10px); | 13 | filter: blur(10px); |
13 | -webkit-filter: blur(10px); | 14 | -webkit-filter: blur(10px); |
14 | } | 15 | } |
15 | 16 | ||
16 | .disable-user-select { | 17 | .disable-user-select { |
17 | -webkit-user-select: none; | 18 | -webkit-user-select: none; |
18 | -moz-user-select: none; | 19 | -moz-user-select: none; |
19 | -ms-user-select: none; | 20 | -ms-user-select: none; |
20 | user-select: none; | 21 | user-select: none; |
21 | } | 22 | } |
22 | 23 | ||
23 | .blue-gradient { | 24 | .blue-gradient { |
24 | background: linear-gradient(0deg, #ffffff00, $white); | 25 | background: linear-gradient(0deg, #ffffff00, $white); |
25 | } | 26 | } |
26 | 27 | ||
27 | .rounded { | 28 | .rounded { |
28 | border-radius: 1.5rem !important; | 29 | border-radius: 1.5rem !important; |
29 | } | 30 | } |
30 | 31 | ||
31 | .rounded-top-sm { | 32 | .rounded-top-sm { |
32 | border-top-left-radius: 0.75rem !important; | 33 | border-top-left-radius: 0.75rem !important; |
33 | border-top-right-radius: 0.75rem !important; | 34 | border-top-right-radius: 0.75rem !important; |
34 | } | 35 | } |
35 | 36 | ||
36 | .rounded-sm { | 37 | .rounded-sm { |
37 | border-radius: 0.75rem !important; | 38 | border-radius: 0.75rem !important; |
38 | } | 39 | } |
39 | 40 | ||
40 | .card-effect { | 41 | .card-effect { |
41 | &:active { | 42 | &:active { |
42 | background-color: #c9c9c9b3 !important; | 43 | background-color: #c9c9c9b3 !important; |
43 | transition: background-color 0.5s; | 44 | transition: background-color 0.5s; |
44 | } | 45 | } |
45 | &:focus { | 46 | &:focus { |
46 | background-color: #c9c9c9b3 !important; | 47 | background-color: #c9c9c9b3 !important; |
47 | transition: background-color 0.5s; | 48 | transition: background-color 0.5s; |
48 | } | 49 | } |
49 | } | 50 | } |
50 | 51 | ||
51 | .overflow-scroll { | 52 | .overflow-scroll { |
52 | overflow-y: auto !important; | 53 | overflow-y: auto !important; |
53 | overflow-x: hidden !important; | 54 | overflow-x: hidden !important; |
54 | &::-webkit-scrollbar { | 55 | &::-webkit-scrollbar { |
55 | width: 0.5em; | 56 | width: 0.5em; |
56 | } | 57 | } |
57 | &::-webkit-scrollbar-track { | 58 | &::-webkit-scrollbar-track { |
58 | border-radius: 10px; | 59 | border-radius: 10px; |
59 | 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); |
60 | -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); |
61 | background-color: $white; | 62 | background-color: $white; |
62 | } | 63 | } |
63 | &::-webkit-scrollbar-thumb { | 64 | &::-webkit-scrollbar-thumb { |
64 | 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); |
65 | -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); |
66 | outline: 1px solid slategrey; | 67 | outline: 1px solid slategrey; |
67 | border-radius: 10px; | 68 | border-radius: 10px; |
68 | height: 12px; | 69 | height: 12px; |
69 | &:active { | 70 | &:active { |
70 | box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9); | 71 | box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9); |
71 | -webkit-box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9); | 72 | -webkit-box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9); |
72 | } | 73 | } |
73 | } | 74 | } |
74 | &::-webkit-scrollbar-corner { | 75 | &::-webkit-scrollbar-corner { |
75 | border-radius: 10px; | 76 | border-radius: 10px; |
76 | } | 77 | } |
77 | } | 78 | } |
78 | 79 | ||
79 | .bg-gray { | 80 | .bg-gray { |
80 | background-color: #e6e6e6; | 81 | background-color: #e6e6e6; |
81 | } | 82 | } |
82 | 83 | ||
83 | .bg-primary-gradient { | 84 | .bg-primary-gradient { |
84 | 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%); |
85 | } | 86 | } |
86 | 87 | ||
87 | .icon-dim { | 88 | .icon-dim { |
88 | height: 40px !important; | 89 | height: 40px !important; |
89 | width: auto !important; | 90 | width: auto !important; |
90 | background-color: white !important; | 91 | background-color: white !important; |
91 | } | 92 | } |
92 | 93 | ||
93 | .text-purple { | 94 | .text-purple { |
94 | color: $purple; | 95 | color: $purple; |
95 | } | 96 | } |
96 | 97 | ||
97 | .vh-70 { | 98 | .vh-70 { |
98 | min-height: auto !important; | 99 | min-height: auto !important; |
99 | max-height: 70vh !important; | 100 | max-height: 70vh !important; |
100 | } | 101 | } |
101 | 102 | ||
102 | .vh-60 { | 103 | .vh-60 { |
103 | min-height: auto !important; | 104 | min-height: auto !important; |
104 | max-height: 60vh !important; | 105 | max-height: 60vh !important; |
105 | } | 106 | } |
106 | 107 | ||
107 | .spinner-lg { | 108 | .spinner-lg { |
108 | width: 3rem !important; | 109 | width: 3rem !important; |
109 | height: 3rem !important; | 110 | height: 3rem !important; |
110 | } | 111 | } |
111 | 112 | ||
112 | .sidebar { | 113 | .sidebar { |
113 | right: 0; | 114 | right: 0; |
114 | } | 115 | } |
115 | 116 |