Created
October 29, 2015 19:43
-
-
Save ghuger/8f0d76d88813e8bd84ad to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $color: 'pink'; | |
| $start: #c2185b; | |
| $dark: desaturate(darken($start, 10), 20); | |
| $TITLE_LIGHT: mix($start, white, 80); | |
| $TITLE_DARK: $dark; | |
| $BEFORE_LIGHT: darken($start, 5); | |
| $BEFORE_DARK: mix($dark, mix($start, black, 10)); | |
| /* bullet - #{$color} */ | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-title { | |
| background-color: $TITLE_LIGHT; | |
| background-position: 0 -170px; | |
| text-shadow: 1px 1px mix($start, black, 75); | |
| } | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-title .easy-faqs-title-before { | |
| background-color: $BEFORE_LIGHT; | |
| border-right: 1px solid $TITLE_LIGHT; | |
| } | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-title.ui-accordion-header-active { | |
| background-color: $TITLE_DARK; | |
| background-position: 0 -213px; | |
| text-shadow: 1px 1px mix($dark, black, 75); | |
| } | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-title.ui-accordion-header-active .easy-faqs-title-before { | |
| background-color: $BEFORE_DARK; | |
| border-right-color: $TITLE_DARK; | |
| } | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-title .easy-faqs-title-text { | |
| border-left: 1px solid $BEFORE_LIGHT; | |
| } | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-title.ui-accordion-header-active .easy-faqs-title-text { | |
| border-left-color: $BEFORE_DARK; | |
| } | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-body { | |
| border: 1px solid $BEFORE_DARK; | |
| } | |
| .easy-faqs-theme-bullet-#{$color} .easy-faq-body.ui-accordion-content-active { | |
| border: 1px solid $TITLE_DARK; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* bullet - pink */ | |
| .easy-faqs-theme-bullet-pink .easy-faq-title { | |
| background-color: #ce467c; | |
| background-position: 0 -170px; | |
| text-shadow: 1px 1px #921244; | |
| } | |
| .easy-faqs-theme-bullet-pink .easy-faq-title .easy-faqs-title-before { | |
| background-color: #ab1550; | |
| border-right: 1px solid #ce467c; | |
| } | |
| .easy-faqs-theme-bullet-pink .easy-faq-title.ui-accordion-header-active { | |
| background-color: #842349; | |
| background-position: 0 -213px; | |
| text-shadow: 1px 1px #631a37; | |
| } | |
| .easy-faqs-theme-bullet-pink .easy-faq-title.ui-accordion-header-active .easy-faqs-title-before { | |
| background-color: #4b1329; | |
| border-right-color: #842349; | |
| } | |
| .easy-faqs-theme-bullet-pink .easy-faq-title .easy-faqs-title-text { | |
| border-left: 1px solid #ab1550; | |
| } | |
| .easy-faqs-theme-bullet-pink .easy-faq-title.ui-accordion-header-active .easy-faqs-title-text { | |
| border-left-color: #4b1329; | |
| } | |
| .easy-faqs-theme-bullet-pink .easy-faq-body { | |
| border: 1px solid #4b1329; | |
| } | |
| .easy-faqs-theme-bullet-pink .easy-faq-body.ui-accordion-content-active { | |
| border: 1px solid #842349; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment