Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eallion/1a50bfb87e2c2524d9c017f538399014 to your computer and use it in GitHub Desktop.
Save eallion/1a50bfb87e2c2524d9c017f538399014 to your computer and use it in GitHub Desktop.

Make sure nth-of-type(4) selects the 3rd item in the personal profile section

Matches version 4.2.0

.account__header__bio .account__header__fields dl:nth-of-type(4) a {
    color: #79bd9a !important;
}

.account__header__bio .account__header__fields dl:nth-of-type(4) a:before {
    content: "" !important;
    display: inline-block !important;
    width: 12px !important;
    height: 12px !important;
    margin-right: 5px !important;
    background: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="12" height="12" viewBox="0 0 1600 1280"%3E%3Cpath fill="%2379bd9a" d="M1575 310q0 40-28 68l-724 724l-136 136q-28 28-68 28t-68-28l-136-136L53 740q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295l656-657q28-28 68-28t68 28l136 136q28 28 28 68z"%2F%3E%3C%2Fsvg%3E') !important;
}

.account__header__bio .account__header__fields dl:nth-of-type(4) dt {
    color: #79bd9a !important;
}

.account__header__bio .account__header__fields dl:nth-of-type(4) {
    margin-top: -1px !important;
    background: rgba(121, 189, 154, 0.25) !important;
    border: 1px solid rgba(121, 189, 154, 0.5) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment