27 lines
290 B
CSS
27 lines
290 B
CSS
|
body {
|
||
|
background: #eee;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
.card {
|
||
|
width: 400px;
|
||
|
background: #fff;
|
||
|
margin: 16px auto;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
background: #e3f4ff;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
background: #e3f4ff;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
background: #e3f4ff;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
background: white;
|
||
|
border: 1px solid #eee;
|
||
|
}
|