18 lines
232 B
CSS
18 lines
232 B
CSS
body {
|
|
background-color: black;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.title {
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.discussion-wrapper {
|
|
border: 1px solid white;
|
|
padding: 15px;
|
|
width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|