Last active
April 3, 2023 15:50
-
-
Save diggeddy/17e10ca123a33578bd213b9b9061b233 to your computer and use it in GitHub Desktop.
MO Coaching 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
form.pmpro_form .pmpro_checkout-field, | |
form.pmpro_form .pmpro_change_password-fields div { | |
display: flex; | |
flex-wrap: wrap; | |
} | |
form.pmpro_form input:not(.pmpro_btn-cancel,[type="submit"]), | |
.pmpro_login_wrap input:not([type="submit"]) { | |
display: block; | |
order: 10; | |
flex: 1 0 100%; | |
background-color: #fff; | |
color: #2c2c2c; | |
border: 1px solid #999999; | |
border-radius: 4px; | |
font-size: 16px; | |
line-height: 1.6em; | |
padding: 11px 15px 10px 15px; | |
} | |
form.pmpro_form label { | |
margin-bottom: 5px; | |
margin-right: 4px; | |
} | |
.pmpro_asterisk { | |
color: #f56c6c; | |
position: relative; | |
top: -2px; | |
} | |
form.pmpro_form label, #loginform label { | |
font-size: 15px; | |
display: inline-block; | |
font-weight: 600; | |
line-height: inherit; | |
margin-bottom: 0; | |
text-transform: uppercase; | |
letter-spacing: 0.08em; | |
margin-left: 2px; | |
} | |
#loginform label { | |
display: block; | |
} | |
form.pmpro_form input[type="submit"], | |
.pmpro_login_wrap input[type="submit"], | |
.pmpro_member_log_out a { | |
background-color: #ffb500; | |
color: #2c2c2c; | |
background-image: linear-gradient(150deg, #ffb500, rgba(255, 183, 0, 0.2)); | |
border: none; | |
font-size: 16px; | |
line-height: 1.6em; | |
font-weight: 800; | |
text-transform: uppercase; | |
letter-spacing: 0.08em; | |
padding: 14px 30px 13px 30px; | |
border-radius: 4px; | |
transition: all 0.5s ease; | |
} | |
form.pmpro_form input[type="submit"]:hover, | |
.pmpro_login_wrap input[type="submit"]:hover, | |
.pmpro_member_log_out a:hover { | |
background-color: #ff8400; | |
border: none; | |
} | |
.pmpro_submit hr { | |
display: none; | |
} | |
.pmpro_actionlinks a, table.pmpro_table a, .pmpro_actions_nav a { | |
font-weight: 700; | |
color: #0073E6; | |
border-bottom-style: solid; | |
border-bottom-width: 2px; | |
padding-bottom: 0px; | |
} | |
.pmpro_actionlinks a:hover, table.pmpro_table a:hover, .pmpro_actions_nav a:hover { | |
color: #48A3FF; | |
} | |
.pmpro-aside .pmpro_form * { | |
max-width: unset !important; | |
width: 100%; | |
} | |
.pmpro-aside .pmpro_form .login-link a { | |
display: block; | |
color: #fff; | |
width: 100%; | |
border: 1px solid #fff; | |
padding: 6px 30px 5px 30px; | |
border-radius: 4px; | |
} | |
.pmpro-aside .pmpro_form .login-link a:hover { | |
background-color: #fff; | |
color: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment