39 lines
534 B
CSS
39 lines
534 B
CSS
body {
|
|
background: #eee;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.card {
|
|
width: 400px;
|
|
background: #fff;
|
|
margin: 8px;
|
|
padding: 15px;
|
|
}
|
|
|
|
.title {
|
|
background: #e3f4ff;
|
|
font-size: 16px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.content {
|
|
background: #e3f4ff;
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.button-container {
|
|
background: #e3f4ff;
|
|
text-align: center;
|
|
padding: 8px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
button {
|
|
background: white;
|
|
border: 1px solid #eee;
|
|
padding: 8px;
|
|
padding-bottom: 8px;
|
|
} |