Commit ad9c0467b7976414b040e7955d96b124ad155582

Authored by Marcelo Puebla
1 parent 827453984b
Exists in master

Cambio color de body.

Showing 1 changed file with 7 additions and 1 deletions   Show diff stats
... ... @@ -3,7 +3,7 @@
3 3  
4 4 html,
5 5 body {
6   - background-color: rgb(245, 245, 245);
  6 + background-color: #f0f0f0;
7 7 overflow: hidden;
8 8 }
9 9  
... ... @@ -52,6 +52,7 @@ body {
52 52 }
53 53 &::-webkit-scrollbar-track {
54 54 border-radius: 10px;
  55 + box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
55 56 -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
56 57 }
57 58 &::-webkit-scrollbar-thumb {
... ... @@ -60,6 +61,7 @@ body {
60 61 border-radius: 10px;
61 62 height: 12px;
62 63 &:active {
  64 + box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9);
63 65 -webkit-box-shadow: inset 0 0 8px rgba(255, 0, 0, 0.9);
64 66 }
65 67 }
... ... @@ -67,3 +69,7 @@ body {
67 69 border-radius: 10px;
68 70 }
69 71 }
  72 +
  73 +.bg-gray{
  74 + background-color: #e6e6e6;
  75 +}
70 76 \ No newline at end of file