Commit fe00b86c4dfed09e95d4b9dc1f24cd6deedbfc6b

Authored by Marcelo Puebla
1 parent 7ccbaebad5
Exists in master

Codigo identado.

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