Last active
June 26, 2018 10:16
-
-
Save mathiasmoeller/943a5259cdf71779aae02b30a62bc6f3 to your computer and use it in GitHub Desktop.
How to customize the Feed Widget
This file contains 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
<style stomt-widget> | |
/* customize wish/like bubble color */ | |
/* NOTE: please adjust the font color when changing the background-color */ | |
.stomt-create-bubble--wish { | |
background-color: blue !important; | |
border-color: blue !important; | |
color: white !important; | |
} | |
.stomt-create-bubble--like { | |
background-color: green !important; | |
border-color: green !important; | |
color: white !important; | |
} | |
/* customize target bubble */ | |
/* NOTE: please adjust the font color when changing the background-color */ | |
.stomt-create-target-bubble { | |
background-color: darkgray !important; | |
border-color: darkgray !important; | |
color: white !important; | |
} | |
/* customize widget background color*/ | |
/* NOTE: when changing the background color you might have to adjust header and footer colors*/ | |
.stomtApp body { | |
background: white !important; | |
} | |
.widget-footer { | |
background: white !important; | |
} | |
/* customize footer color */ | |
.widget-footer a { | |
color: black !important; | |
} | |
/* customize submit button color */ | |
/* NOTE: please adjust the font color when changing the background-color */ | |
.stomt-form-submit { | |
background-color: green !important; | |
color: white !important; | |
} | |
.stomt-form-submit--disabled { | |
background-color: darkgray !important; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment