Skip to content
This repository was archived by the owner on Mar 6, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/scss/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,8 @@
color: $color-black !important;
border: 1px solid #b5b5b5
}

a:hover, a:active, a:focus {
outline: 0;
outline-style: none;
}
8 changes: 5 additions & 3 deletions src/scss/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ footer
padding-top: 4em;
padding-bottom: 3em;


a {
color: $color-white;
line-height: 1.7;
color: $color-white;
line-height: 1.7;
&:hover {
color: $color-blue;
}
}

&__nav {
Expand Down
3 changes: 3 additions & 0 deletions src/scss/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ $nav-height: 90px;
margin-top: pxToRem(4px);
margin-left: pxToRem(10px);
}
&:hover {
color: $color-hover-nav;
}
}

&--black {
Expand Down
4 changes: 4 additions & 0 deletions src/scss/_overlay-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@
margin-top: 2px;
margin-right: 4px;
}

&:hover {
color: $color-hover-nav;
}
}

&__list {
Expand Down
2 changes: 2 additions & 0 deletions src/scss/global/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ $color-red: #ec2227;
$color-green: #24b47e;
$color-green-light: #b9f4bc;

$color-hover-nav: #222654;

$gradient-dash-sky: linear-gradient(to top right, #3094E3, #247FC8 9%, #186AAC 30%, #163B80 73%, #001D38);
$gradient-atmosphere-blue-violet: linear-gradient(to top right,#4cddff,#3b9aca 10%,#2d6ca5 20%,#2a5291 27%,#283d81 35%,#222654 50%,#1e1635 63%,#0c0010 93%,#000);
$gradient-default-overlay-blue: linear-gradient(-225deg, rgba(#283d81,0.7) 0%, rgba(#1c75bc,0.8) 100%);
Expand Down