Skip to content

Commit

Permalink
webclient - Adjust some colors
Browse files Browse the repository at this point in the history
  • Loading branch information
bebac committed Aug 8, 2017
1 parent 0231db3 commit b7e52d5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
8 changes: 4 additions & 4 deletions webclient/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
#header
{
flex: 0 0 auto;
background: linear-gradient(to bottom, saturate(rgba(241, 239, 236, 1), 2%), rgba(241, 239, 236, 0.2));
border-top: 1px solid desaturate(darken(rgba(241, 239, 236, 1), 2%), 10%);
border-bottom: 1px solid desaturate(darken(rgba(241, 239, 236, 1), 2%), 5%);
background: linear-gradient(to bottom, saturate($color-base, 2%), transparentize($color-base, 0.4));
//border-top: 1px solid desaturate(darken($color-base, 5%), 10%);
border-bottom: 1px solid desaturate(darken($color-base, 10%), 5%);
}
#main
Expand All @@ -63,7 +63,7 @@
#footer
{
flex: 0 0 4em;
background-color: rgba(241, 239, 236, 1);
background-color: $color-base;
}
}
</style>
8 changes: 4 additions & 4 deletions webclient/src/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
align-items: center;
flex: 1;
padding: 1em;
color: #b5a871;
color: darken($color-base, 25%);
>div:nth-child(2)
{
Expand Down Expand Up @@ -123,9 +123,9 @@
a
{
padding: 0 1em;
font-weight: 600;
font-weight: bold;
text-transform: uppercase;
color: #aaa;
color: desaturate(darken($color-complement, 15%), 10%);
}
a:link
Expand All @@ -144,7 +144,7 @@
a.router-link-active
{
color: #666;
color: desaturate(darken($color-complement, 40%), 10%);
}
}
Expand Down
9 changes: 5 additions & 4 deletions webclient/src/components/Tracks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,17 +193,18 @@
thead
{
flex: 0;
color: #333;
//background-color: desaturate(darken(rgba(241, 239, 236, 1), 2%), 10%);
//background-color: lighten(#D4D7DB, 13%);
color: #555;
//background-color: saturate(darken($color-complement, 0%), 0%);
box-shadow: 0px -2px 12px rgba(140, 139, 127, 0.4);
border-bottom: 1px solid #eee;
text-transform: uppercase;
font-weight: bold;
z-index: 1;
th
{
transform: scaleY(0.68);
//transform: scaleY(0.68);
font-size: 0.72em;
}
tr.item
Expand Down

0 comments on commit b7e52d5

Please sign in to comment.