2016-03-27 22:19:44 +00:00
|
|
|
form {
|
|
|
|
display: block;
|
|
|
|
width: 20em;
|
|
|
|
}
|
2016-03-19 20:37:04 +00:00
|
|
|
form fieldset {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
form fieldset legend {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 17pt;
|
|
|
|
}
|
|
|
|
form ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2016-03-27 22:19:44 +00:00
|
|
|
form ul li {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
form .buttons {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
form .input li:first-child label,
|
|
|
|
form .input li:first-child {
|
|
|
|
padding-top: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2016-03-19 20:37:04 +00:00
|
|
|
|
|
|
|
form.tabular ul {
|
|
|
|
display: table;
|
|
|
|
border-spacing: 0.5em;
|
|
|
|
margin: 0.5em -0.5em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
form.tabular ul li {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
form.tabular ul li label {
|
|
|
|
display: table-cell;
|
|
|
|
width: 33%;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
form.tabular .buttons {
|
|
|
|
margin-left: 33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
form:not(.tabular) ul li label {
|
|
|
|
display: block;
|
2016-03-27 22:19:44 +00:00
|
|
|
padding: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=radio], input[type=checkbox] {
|
|
|
|
float: left;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio, .checkbox {
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: calc(20px + 0.5em) !important;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.radio:hover:before, .checkbox:hover:before {
|
|
|
|
border-color: var(--main-color);
|
|
|
|
}
|
|
|
|
.radio:before, .checkbox:before {
|
|
|
|
transition: border-color 0.1s linear;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
margin-top: -10px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
border: 2px solid var(--input-background-color);
|
|
|
|
background: var(--input-border-color);
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
input[type=radio]:checked + .radio:before,
|
|
|
|
input[type=checkbox]:checked + .checkbox:before {
|
|
|
|
border-color: var(--main-color);
|
|
|
|
}
|
|
|
|
input[type=radio]:checked + .radio:after,
|
|
|
|
input[type=checkbox]:checked + .checkbox:after {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio:after {
|
|
|
|
transition: opacity 0.1s linear;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 5px;
|
|
|
|
display: block;
|
|
|
|
margin-top: -5px;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
content: '';
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.checkbox:after {
|
|
|
|
transition: opacity 0.1s linear;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 6px;
|
|
|
|
display: block;
|
|
|
|
margin-top: -7px;
|
|
|
|
width: 5px;
|
|
|
|
height: 9px;
|
|
|
|
border-right: 3px solid var(--main-color);
|
|
|
|
border-bottom: 3px solid var(--main-color);
|
|
|
|
content: '';
|
|
|
|
opacity: 0;
|
|
|
|
transform: rotate(45deg);
|
2016-03-19 20:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea,
|
|
|
|
input[type=text],
|
|
|
|
input[type=email],
|
|
|
|
input[type=password] {
|
2016-03-27 22:19:44 +00:00
|
|
|
transition: border-color 0.1s linear, background-color 0.1s linear;
|
2016-03-19 20:37:04 +00:00
|
|
|
font-size: 100%;
|
|
|
|
font-family: 'Inconsolata', monospace;
|
|
|
|
padding: 0.3em;
|
2016-03-27 22:19:06 +00:00
|
|
|
border: 2px solid var(--input-background-color);
|
|
|
|
background: var(--input-border-color);
|
2016-03-19 20:37:04 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
box-shadow: none; /* :-moz-submit-invalid on FF */
|
|
|
|
}
|
|
|
|
|
2016-03-27 22:19:44 +00:00
|
|
|
textarea:focus,
|
|
|
|
input[type=text]:focus,
|
|
|
|
input[type=email]:focus,
|
|
|
|
input[type=password]:focus {
|
|
|
|
border-color: var(--main-color);
|
|
|
|
}
|
|
|
|
|
2016-03-19 20:37:04 +00:00
|
|
|
form.show-validation fieldset.input input:invalid {
|
|
|
|
outline: none;
|
2016-03-27 22:19:06 +00:00
|
|
|
border: 2px solid var(--input-bad-border-color);
|
|
|
|
background: var(--input-bad-background-color);
|
2016-03-19 20:37:04 +00:00
|
|
|
}
|
|
|
|
form.show-validation fieldset.input input:valid {
|
|
|
|
outline: none;
|
2016-03-27 22:19:06 +00:00
|
|
|
border: 2px solid var(--input-good-border-color);
|
|
|
|
background: var(--input-good-background-color);
|
2016-03-19 20:37:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
input[type=button],
|
|
|
|
input[type=submit] {
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 100%;
|
|
|
|
line-height: 100%;
|
|
|
|
padding: 0.3em 0.7em;
|
2016-03-27 22:19:06 +00:00
|
|
|
border: 1px solid var(--main-color);
|
|
|
|
background: var(--main-color);
|
2016-03-19 20:37:04 +00:00
|
|
|
color: white;
|
|
|
|
}
|