Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other The Lodge Signup Page design quesions Reply To: The Lodge Signup Page design quesions

#152098
Dustin
Participant

You can inspect the elements on the signup page with Chrome DevTools. Here’s some code I grabbed from the css file.

.button, .markItUpHeader ul li, #rcp_submit {
    display: inline-block;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: #4e68c7;
    box-shadow: 1px 0px 1px #203891, 0px 1px 1px #3852b1, 2px 1px 1px #203891, 1px 2px 1px #3852b1, 3px 2px 1px #203891, 2px 3px 1px #3852b1, 4px 3px 1px #203891, 3px 4px 1px #3852b1, 5px 4px 1px #203891, 4px 5px 1px #3852b1, 6px 5px 1px #203891;
    color: white;
    white-space: nowrap;
    font-family: 'Gotham Rounded A',  'Gotham Rounded B',  "proxima-nova-soft",  sans-serif;
    padding: 9px 16px;
    line-height: 1.4;
    position: relative;
    top: -5px;
}
.button:not(.disabled):hover, .markItUpHeader ul li:not(.disabled):hover, .button:not(.disabled):focus, .markItUpHeader ul li:not(.disabled):focus, #rcp_submit:not(.disabled):hover, #rcp_submit:not(.disabled):focus {
    color: white;
    background: #3d57b4;
}
.button:not(.disabled):active, .markItUpHeader ul li:not(.disabled):active, #rcp_submit:not(.disabled):active {
    box-shadow: 1px 0px 1px #203891, 0px 1px 1px #3852b1, 2px 1px 1px #203891, 1px 2px 1px #3852b1, 3px 2px 1px #203891;
    -webkit-transform: translate(3px,  3px);
    -moz-transform: translate(3px,  3px);
    -ms-transform: translate(3px,  3px);
    -o-transform: translate(3px,  3px);
    transform: translate(3px,  3px);
}
.button:after, .markItUpHeader ul li:after, #rcp_submit:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -5px;
    bottom: -5px;
}
.button:active:after, .markItUpHeader ul li:active:after, #rcp_submit:active:after {
    top: -3px;
    left: -3px;
    right: -2px;
    bottom: -2px;
}
.button.disabled, .markItUpHeader ul li.disabled, #rcp_submit.disabled {
    opacity: 0.5;
    cursor: auto;
}
.button.disabled:hover, .markItUpHeader ul li.disabled:hover, .button.disabled:focus, .markItUpHeader ul li.disabled:focus, #rcp_submit.disabled:hover, #rcp_submit.disabled:focus {
    color: white;
}