Skip to content

Instantly share code, notes, and snippets.

@max-kk
Created July 19, 2016 06:59
Show Gist options
  • Save max-kk/bcd4d05428d4fa0655a1d342cb935cdf to your computer and use it in GitHub Desktop.
Save max-kk/bcd4d05428d4fa0655a1d342cb935cdf to your computer and use it in GitHub Desktop.
How to change color of blue circle in Piterest theme?
/* Yellow */
.is-gallery .clg-head-view:before {
background-color:rgba(255, 196, 0, 0.7) !important;
}
/* Or Pink */
.is-gallery .clg-head-view:before {
background-color:rgba(255,105,180, 0.7) !important;
}
/* Or Pink (just Hover circle) */
.is-gallery:not(.is-voted) .clg-head-view:before {
background-color:rgba(255,105,180, 0.7) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment