odin-default-css-exercises/margin-and-padding/margin-and-padding-2/style.css

27 lines
300 B
CSS
Raw Normal View History

2021-08-18 20:49:04 +00:00
body {
background: #eee;
font-family: sans-serif;
}
.card {
width: 400px;
background: #fff;
margin: 16px auto;
}
.title {
background: #e3f4ff;
}
.content {
background: #e3f4ff;
}
.button-container {
2021-08-18 20:49:04 +00:00
background: #e3f4ff;
}
button {
background: white;
border: 1px solid #eee;
}