39 lines
686 B
SCSS
Executable File
39 lines
686 B
SCSS
Executable File
fieldset {
|
|
border: none;
|
|
}
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="email"],
|
|
textarea,
|
|
select {
|
|
margin: 0;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
display: block;
|
|
}
|
|
select {
|
|
padding: 0;
|
|
}
|
|
input[type="text"]:focus,
|
|
input[type="password"]:focus,
|
|
input[type="email"]:focus,
|
|
textarea:focus {
|
|
border: 1px solid #aaa;
|
|
color: #444;
|
|
-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
|
|
-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
|
|
box-shadow: 0 0 3px rgba(0,0,0,.2);
|
|
}
|
|
textarea {
|
|
min-height: 60px;
|
|
resize: vertical;
|
|
}
|
|
label,
|
|
legend {
|
|
display: block;
|
|
font-weight: bold;
|
|
font-size: 13px; }
|
|
input[type="checkbox"] {
|
|
display: inline;
|
|
}
|