Skip to content

Commit

Permalink
Better naming for the OBS colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Moises Deniz Aleman committed Jul 26, 2018
1 parent c8b8567 commit 93abfd7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/api/app/assets/stylesheets/webui2/card-component.scss
Expand Up @@ -3,5 +3,5 @@
}

.card-body > h1, .card-body > h2, .card-body > h3, .card-body > h4, .card-body > h5, .card-body > h6 {
color: $main_green;
color: $obs_green;
}
16 changes: 8 additions & 8 deletions src/api/app/assets/stylesheets/webui2/colors.scss
Expand Up @@ -3,15 +3,15 @@ $gray-100: #f8f9fa;
$gray-150: #f0f0f0;
$gray-200: #e9ecef;

$main_green: #693;
$main_blue: #069;
$main_yellow: #f0ad4e;
$obs_green: #693;
$obs_blue: #069;
$obs_yellow: #f0ad4e;

$link-hover-color: $main_green;
$link-color: $main_blue;
$primary: $main_green;
$secondary: $main_blue;
$link-hover-color: $obs_green;
$link-color: $obs_blue;
$primary: $obs_green;
$secondary: $obs_blue;

.text-package {
color: $main_yellow;
color: $obs_yellow;
}
@@ -1,10 +1,10 @@
#personal-navigation {
& .nav-item a {
font-size: 0.9rem;
color: $main_green;
color: $obs_green;

&:hover {
color: $main_blue;
color: $obs_blue;
}
}

Expand Down
6 changes: 3 additions & 3 deletions src/api/app/assets/stylesheets/webui2/sticky-footer.scss
Expand Up @@ -11,10 +11,10 @@ body {

& a {
font-size: .9rem;
color: $main_green;
color: $obs_green;

&:hover {
color: $main_blue;
color: $obs_blue;
}
}
}
}

0 comments on commit 93abfd7

Please sign in to comment.