Skip to content

Instantly share code, notes, and snippets.

@mathiasmoeller
Created June 26, 2018 10:16
Show Gist options
  • Save mathiasmoeller/ac9d42790a2df6a8d1444d5e34ec8c3c to your computer and use it in GitHub Desktop.
Save mathiasmoeller/ac9d42790a2df6a8d1444d5e34ec8c3c to your computer and use it in GitHub Desktop.
How to customize the STOMT Tab Widget
<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;
}
/* customize header color */
.feed-headline-small {
color: black !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