Skip to content

Commit

Permalink
fixed colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Amy Shao committed Jan 10, 2021
1 parent a569329 commit df6ff10
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
26 changes: 13 additions & 13 deletions css/stylish-portfolio.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ h6 {
height: 100%;
transition: all 0.4s ease 0s;
transform: translateX(250px);
background: #1D809F;
background: #768D64;
border-left: 1px solid rgba(255, 255, 255, 0.1);
}

Expand Down Expand Up @@ -204,7 +204,7 @@ h6 {

.service-icon {
background-color: #fff;
color: #1D809F;
color: #768D64;
height: 7rem;
width: 7rem;
display: block;
Expand Down Expand Up @@ -292,7 +292,7 @@ h6 {
clip-path: inset(2rem);
}
.portfolio-item:hover .caption {
background-color: rgba(29, 128, 159, 0.9);
background-color: rgba(118, 141, 100, 0.9);
-webkit-clip-path: inset(2rem);
clip-path: inset(2rem);
}
Expand All @@ -315,33 +315,33 @@ footer.footer .social-link {
width: 4rem;
line-height: 4.3rem;
font-size: 1.5rem;
background-color: #1D809F;
background-color: #768D64;
transition: background-color 0.15s ease-in-out;
box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
}

footer.footer .social-link:hover {
background-color: #155d74;
background-color: #5d6f4f;
text-decoration: none;
}

a {
color: #1D809F;
color: #768D64;
}

a:hover, a:focus, a:active {
color: #155d74;
color: #5d6f4f;
}

.btn-primary {
background-color: #1D809F !important;
border-color: #1D809F !important;
background-color: #768D64 !important;
border-color: #768D64 !important;
color: #fff !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
background-color: #155d74 !important;
border-color: #155d74 !important;
background-color: #5d6f4f !important;
border-color: #5d6f4f !important;
}

.btn-secondary {
Expand All @@ -365,11 +365,11 @@ a:hover, a:focus, a:active {
}

.bg-primary {
background-color: #1D809F !important;
background-color: #768D64 !important;
}

.text-primary {
color: #1D809F !important;
color: #768D64 !important;
}

.text-secondary {
Expand Down
2 changes: 1 addition & 1 deletion css/stylish-portfolio.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ <h2></h2>
<section class="content-section bg-primary text-white text-center" id="portfolio">
<div class="container">
<div class="content-section-heading text-center">
<h3 class="text-secondary mb-0">Groups</h3>
<h2 class="mb-5">Ongoing</h2>
</div>
<div class="row no-gutters">
Expand Down
2 changes: 1 addition & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ $gray-800: #343a40 !default;
$gray-900: #212529 !default;
$black: #000 !default;

$primary: #1D809F !default;
$primary: #768D64 !default;
$secondary: #ecb807 !default;

0 comments on commit df6ff10

Please sign in to comment.