mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
67 lines
No EOL
849 B
SCSS
67 lines
No EOL
849 B
SCSS
@import "global";
|
|
|
|
$input-width: 300px;
|
|
|
|
label[for], .label-radio
|
|
{
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type="email"], input[type="text"]
|
|
{
|
|
border: 0 none;
|
|
border: 1px solid rgba(160,160,160,.5);
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
width: $input-width;
|
|
height: $spacing-vertical * 1.5;
|
|
}
|
|
|
|
.span4 input[type="email"] /*hack rule fix me*/
|
|
{
|
|
width: 100%;
|
|
}
|
|
|
|
form .full-width
|
|
{
|
|
width: 100%;
|
|
}
|
|
|
|
textarea
|
|
{
|
|
width: 100%;
|
|
}
|
|
|
|
.form-row
|
|
{
|
|
margin-bottom: $spacing-vertical;
|
|
> label
|
|
{
|
|
font-size: 0.8em;
|
|
opacity: 0.9;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
input[type="checkbox"]
|
|
{
|
|
-webkit-appearance: checkbox;
|
|
}
|
|
|
|
input[type="radio"]
|
|
{
|
|
-webkit-appearance: radio;
|
|
}
|
|
|
|
.mail-submit, .invite-submit
|
|
{
|
|
input
|
|
{
|
|
margin-right: 10px;
|
|
}
|
|
input, .btn-primary
|
|
{
|
|
margin-bottom: $spacing-vertical / 2;
|
|
vertical-align: bottom;
|
|
}
|
|
} |