25 lines
232 B
CSS
25 lines
232 B
CSS
|
h1 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
legend {
|
||
|
margin: 0 auto;
|
||
|
margin-top: 3%;
|
||
|
}
|
||
|
|
||
|
fieldset{
|
||
|
margin: 0 auto;
|
||
|
width: 70%;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
input[type="submit"]{
|
||
|
font-size: 15px;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
|