mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-27 06:40:42 -05:00
39 lines
No EOL
532 B
CSS
39 lines
No EOL
532 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.item {
|
|
min-height: 250px;
|
|
min-width: 250px;
|
|
padding: 20px;
|
|
gap: 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.card-image {
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|
|
|
|
body {
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
} |