Last active
November 15, 2021 09:22
-
-
Save candicerm/6634c64051f71a3ea07c8f3665403bc0 to your computer and use it in GitHub Desktop.
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
| <!-- 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