Commit ad9c0467b7976414b040e7955d96b124ad155582

Authored by Marcelo Puebla
1 parent 827453984b
Exists in master and in 1 other branch validar_pve

Cambio color de body.

Showing 1 changed file with 7 additions and 1 deletions   Show diff stats
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 3
4 html, 4 html,
5 body { 5 body {
6 background-color: rgb(245, 245, 245); 6 background-color: #f0f0f0;
7 overflow: hidden; 7 overflow: hidden;
8 } 8 }
9 9
10 .blur { 10 .blur {
11 filter: blur(10px); 11 filter: blur(10px);
12 -webkit-filter: blur(10px); 12 -webkit-filter: blur(10px);
13 } 13 }
14 14
15 .disable-user-select { 15 .disable-user-select {
16 -webkit-user-select: none; 16 -webkit-user-select: none;
17 -moz-user-select: none; 17 -moz-user-select: none;
18 -ms-user-select: none; 18 -ms-user-select: none;
19 user-select: none; 19 user-select: none;
20 } 20 }
21 21
22 .blue-gradient { 22 .blue-gradient {
23 background: linear-gradient(0deg, rgb(20, 56, 68), rgb(252, 252, 252)); 23 background: linear-gradient(0deg, rgb(20, 56, 68), rgb(252, 252, 252));
24 } 24 }
25 25
26 .rounded { 26 .rounded {
27 border-radius: 1.5rem !important; 27 border-radius: 1.5rem !important;
28 } 28 }
29 29
30 .rounded-sm { 30 .rounded-sm {
31 border-radius: 0.75rem !important; 31 border-radius: 0.75rem !important;
32 } 32 }
33 33
34 .card-effect { 34 .card-effect {
35 &:active, 35 &:active,
36 img { 36 img {
37 background-color: #c9c9c9b3 !important; 37 background-color: #c9c9c9b3 !important;
38 transition: background-color 0.5s; 38 transition: background-color 0.5s;
39 } 39 }
40 &:focus, 40 &:focus,
41 img { 41 img {
42 background-color: #c9c9c9b3 !important; 42 background-color: #c9c9c9b3 !important;
43 transition: background-color 0.5s; 43 transition: background-color 0.5s;
44 } 44 }
45 } 45 }
46 46
47 .overflow-scroll { 47 .overflow-scroll {
48 overflow-y: auto !important; 48 overflow-y: auto !important;
49 overflow-x: hidden !important; 49 overflow-x: hidden !important;
50 &::-webkit-scrollbar { 50 &::-webkit-scrollbar {
51 width: 0.5em; 51 width: 0.5em;
52 } 52 }
53 &::-webkit-scrollbar-track { 53 &::-webkit-scrollbar-track {
54 border-radius: 10px; 54 border-radius: 10px;
55 box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
55 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4); 56 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
56 } 57 }
57 &::-webkit-scrollbar-thumb { 58 &::-webkit-scrollbar-thumb {
58 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7); 59 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7);
59 outline: 1px solid slategrey; 60 outline: 1px solid slategrey;
60 border-radius: 10px; 61 border-radius: 10px;
61 height: 12px; 62 height: 12px;
62 &:active { 63 &:active {
64 box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9);
63 -webkit-box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9); 65 -webkit-box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9);
64 } 66 }
65 } 67 }
66 &::-webkit-scrollbar-corner { 68 &::-webkit-scrollbar-corner {
67 border-radius: 10px; 69 border-radius: 10px;
68 } 70 }
69 } 71 }
72
73 .bg-gray{
74 background-color: #e6e6e6;
75 }