Skip to content
This repository has been archived by the owner on May 29, 2023. It is now read-only.

Commit

Permalink
hover styles
Browse files Browse the repository at this point in the history
  • Loading branch information
nileshgulia1 committed Jan 10, 2023
1 parent 036e61d commit 2df0fde
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions src/less/slate-styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,51 @@
//Call to action styles

.block.call-to-action {
.improving {
.ui.button.improving {
padding: 0.5rem 2rem;
border-radius: 10px;
background-color: #007b6c;
color: white;

&:hover {
background-color: #007b6c;
color: white;
}
}

.deteriotating {
.ui.button.deteriotating {
padding: 0.5rem 2rem;
border-radius: 10px;
background-color: #b83230;
color: white;

&:hover {
background-color: #b83230;
color: white;
}
}

.no-trend {
.ui.button.no-trend {
padding: 0.5rem 2rem;
border-radius: 10px;
background-color: #bcbec0;
color: black;

&:hover {
background-color: #bcbec0;
color: black;
}
}

.stable {
.ui.button.stable {
padding: 0.5rem 2rem;
border-radius: 10px;
background-color: #ff9933;
color: black;

&:hover {
background-color: #ff9933;
color: black;
}
}
}

0 comments on commit 2df0fde

Please sign in to comment.