24 lines
413 B
CSS
24 lines
413 B
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: white;
|
|
margin: 1em auto;
|
|
width: 710px;
|
|
padding: 0 2em 1em;
|
|
border: 1px solid black;
|
|
border-radius: 1em;
|
|
}
|
|
h1 {
|
|
color: cornflowerblue;
|
|
}
|
|
div {
|
|
margin-bottom: 1em;
|
|
}
|
|
input {
|
|
width: 22em;
|
|
margin-right: 1em;
|
|
margin-bottom: .5em;
|
|
}
|
|
#tasks {
|
|
margin-top: 0;
|
|
float: right;
|
|
} |