36 lines
448 B
CSS
36 lines
448 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: #fff;
|
||
|
font-family: "Times New Roman";
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
padding: 17px;
|
||
|
line-height: 1.6;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
text-decoration: underline;
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
padding-left: 10px;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
padding-left: 30px;
|
||
|
}
|
||
|
|
||
|
.buttons {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
gap: 5px;
|
||
|
padding-top: 10px;
|
||
|
}
|