23 lines
243 B
CSS
23 lines
243 B
CSS
|
body {
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
.box {
|
||
|
border-radius: 20px;
|
||
|
padding: 1em;
|
||
|
margin: 1em;
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
|
||
|
.intro {
|
||
|
background-color: lightgreen;
|
||
|
}
|
||
|
|
||
|
ul.proposals {
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
li.proposal {
|
||
|
background-color: wheat;
|
||
|
}
|