File size: 1,354 Bytes
6046815 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.5;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.logo {
display: block;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
section#input {
margin-top: 40px;
}
section#input .row {
margin-bottom: 20px;
}
section#input .row:last-child {
margin-bottom: 0;
}
section#input input[type="text"], section#input input[type="number"], section#input input[type="email"], section#input input[type="password"], section#input select {
width: 100%;
padding: 10px;
border: none;
border-radius: 5px;
background-color: #f5f5f5;
}
section#input input[type="text"]:focus, section#input input[type="number"]:focus, section#input input[type="email"]:focus, section#input input[type="password"]:focus, section#input select:focus {
outline: none;
box-shadow: 0 0 5px #333;
}
section#input input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
}
section#input input[type="submit"]:hover {
background-color: #45a049;
}
#output {
margin-top: 20px;
font-size: 24px;
font-weight: bold;
color: #333;
} |