Last active
April 2, 2022 20:58
-
-
Save nathaningram/190e347a7fab4e5964e68d6bff892be1 to your computer and use it in GitHub Desktop.
Behind the Site CSS
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
| /***************** CSS from Behind The Site, March 2022 *****************/ | |
| /* Typography */ | |
| .fl-rich-text p { /* Removes Kadence top p margin */ | |
| margin-top:0 !important; | |
| } | |
| .fl-rich-text p:last-child { /*removes margin at bottom of BvB text modules */ | |
| margin-bottom: 0; | |
| } | |
| .highlight { | |
| background: #E89416 !important; | |
| padding: 0px 6px 0px 6px; | |
| margin: 0px -5px 0px -5px; | |
| border-radius: 2px; | |
| } | |
| .underline { | |
| border-bottom: 2px #E89416 solid !important; | |
| padding: 0px 2px 0px 2px; | |
| margin: 0px -5px 0px -5px; | |
| } | |
| .pop { | |
| color: #E89416 !important; | |
| } | |
| .pop2 { | |
| color:#d67113 !important; | |
| } | |
| .shadow1 { | |
| text-shadow: 1px 1px 3px rgba(0,0,0,0.75), | |
| 1px 1px 5px rgba(0,0,0,0.5); | |
| } | |
| .justified { | |
| text-align: justify !important; | |
| } | |
| .small { | |
| font-size:.7em; | |
| text-transform: none !important; | |
| } | |
| .lowercase { | |
| text-transform: lowercase !important; | |
| } | |
| /**** Register Page on Members Site - RCP Register Form ****/ | |
| #rcp_agree_to_terms_wrap a, | |
| #rcp_agree_to_privacy_policy_wrap a { | |
| text-decoration: none; | |
| } | |
| #rcp_agree_to_terms_wrap { | |
| margin-top:20px !important; | |
| } | |
| #rcp_agree_to_privacy_policy_wrap { | |
| margin:20px 0 30px 0 !important; | |
| } | |
| #rcp_subscription_levels { | |
| background: #fdf0d5; | |
| padding: 5px 10px; | |
| font-weight: bold; | |
| margin-bottom:20px; | |
| } | |
| #rcp-card-name { | |
| width:100%; | |
| } | |
| /**** Group Page CSS ****/ | |
| .rcp-header { | |
| margin-top:50px; | |
| padding-top:50px; | |
| border-top:2px #888 solid; | |
| } | |
| .rcp_form input[type="text"], | |
| .rcp_form input[type="email"], | |
| .rcp_form input[type="password"] { | |
| width:100%; | |
| } | |
| .rcp_form label { | |
| margin-top:10px; | |
| } | |
| #rcpga-group-member-disable-invite-wrap label, | |
| #rcpga-group-member-import-disable-invite_wrap label { | |
| line-height: 1.25 !important; | |
| margin:25px 0; | |
| } | |
| #rcpga-group-member-import-wrap { | |
| padding: 25px 0; | |
| } | |
| /*#rcpga-group-description-wrap { | |
| display: none; | |
| }*/ | |
| .rcp_submit_wrap { | |
| padding-top: 40px; | |
| } | |
| .rcp_success { | |
| margin-bottom:25px !important; | |
| } | |
| .rcpga-group-dashboard h2 a { | |
| display: none !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment