Skip to content

Instantly share code, notes, and snippets.

@candicerm
Last active November 15, 2021 09:22
Show Gist options
  • Select an option

  • Save candicerm/6634c64051f71a3ea07c8f3665403bc0 to your computer and use it in GitHub Desktop.

Select an option

Save candicerm/6634c64051f71a3ea07c8f3665403bc0 to your computer and use it in GitHub Desktop.
<!-- Copy this entire code block-->
<script>
function qsOnLoad($) {
/* Form */
$(".qsform").css({
"font-family": "Arial, Tahoma, sans-serif",
"font-size": "0.875rem"
});
/* Labels */
$(".qsform .qslabel").css({
"font-family": "inherit"
});
/* Inputs */
$(".qsform input").css({
"background-color": "#f8f8f8",
"border": "none"
});
/* Buttons */
$(".qsform button").css({
"background-color": "#f8f8f8",
"border": "none"
});
/* Header */
$(".qsform .qsheader").css("font-size", "inherit");
/* Dropdown Menu*/
$(".qsselect").css({
"background-color": "#f8f8f8",
"border": "none",
"width": "150px"
});
/* Confirmation Message */
$(".qsdone").css("background-color", "#f8f8f8");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment