- Sign Up
- Credit Card Checkout
- Landing Page (above the fold)
- Calculator
- App Icon
- User Profile
- Settings
- 404 page
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
| /* | |
| ** Contact Form 7 basics | |
| ** | |
| **/ | |
| /* Form width and border */ | |
| .wpcf7 { | |
| text-align: left; | |
| width: 90%; |
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
| /* STYLING NINJA FORMS - add to your stylesheet and adjust */ | |
| /* The full form */ | |
| #ninja_forms_form_1_wrap { | |
| background-color: #f89a16; | |
| padding: 20px; | |
| border: 2px solid #ccc; | |
| border-radius: 8px; | |
| box-shadow: 0px 3px 5px #444; |
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
| # first: | |
| lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done | |
| sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.* | |
| # To recap, the best way (I've found) to completely uninstall node + npm is to do the following: | |
| # go to /usr/local/lib and delete any node and node_modules | |
| cd /usr/local/lib | |
| sudo rm -rf node* |
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
| /********************* | |
| Contact Form 7 Styles - | |
| If you want to leave these colours as they are, then do so, | |
| otherwise, wap grey and green for your brand colours in your MIXINS file | |
| *********************/ | |
| $dark: rgb(50,50,50); | |
| $green: rgb(0,200,100); | |
| div.wpcf7 { | |
| margin: 0; |