22 lines
259 B
CSS
22 lines
259 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: monospace;
|
|
background: #f4f4f9;
|
|
}
|
|
|
|
.card {
|
|
border: 1px solid #ccc;
|
|
padding: 10px;
|
|
margin: auto;
|
|
margin-bottom: 40px;
|
|
width: 600px;
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 24px;
|
|
margin-bottom: 5px;
|
|
}
|