mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-04 19:33:22 +01:00
79 lines
1.5 KiB
CSS
79 lines
1.5 KiB
CSS
form {
|
|
margin: 10px;
|
|
}
|
|
form input {
|
|
margin: 1px;
|
|
}
|
|
|
|
body,th,td {
|
|
font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
|
|
font-size: 13px;
|
|
}
|
|
form fieldset {
|
|
width: 600px;
|
|
border: 1px solid rgb(187, 187, 187);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
margin-bottom: 20px;
|
|
padding: 8px 0 8px 8px;
|
|
}
|
|
form fieldset fieldset{
|
|
width: 580px;
|
|
margin: 15px 0 5px 0;
|
|
clear: left;
|
|
float: left;
|
|
}
|
|
form fieldset legend {
|
|
margin-left: 10px;
|
|
font-weight: bold;
|
|
}
|
|
form label {
|
|
min-width: 150px;
|
|
display: block;
|
|
float: left;
|
|
margin: 1px 0 0 0;
|
|
clear: left;
|
|
}
|
|
form div {
|
|
float: left;
|
|
}
|
|
form input[type="text"], form input[type="number"], form input[type="password"] {
|
|
border: 1px solid rgb(144, 192, 255);
|
|
margin-right: 5px;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
form input[type="text"].small, form input[type="number"].small, form input[type="password"].small {
|
|
width: 50px;
|
|
}
|
|
form input[type="text"].large, form input[type="number"].large, form input[type="password"].large {
|
|
width: 250px;
|
|
}
|
|
form input[type="radio"] {
|
|
margin: 4px 4px 0 0;
|
|
}
|
|
form textarea {
|
|
border: 1px solid rgb(144, 192, 255);
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
form textarea.gcode {
|
|
width: 270px;
|
|
height: 150px;
|
|
margin-right: 20px;
|
|
}
|
|
form small {
|
|
margin: 3px 0 0 0;
|
|
display: block;
|
|
clear: left;
|
|
}
|
|
form .button {
|
|
display: inline-block;
|
|
}
|
|
|
|
form #passwordLabel, form #password {
|
|
display: none;
|
|
} |