Files
internship_node/day6/public/stylesheets/style.css
T

23 lines
329 B
CSS
Raw Normal View History

2022-02-06 21:10:59 -05:00
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
2025-07-14 21:52:29 +01:00
color: #00b7ff;
}
#results {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 8px;
}
.productCard {
border: 2px solid black;
border-radius: 16px;
display: flex;
flex-direction: column;
align-items: center;
2022-02-06 21:10:59 -05:00
}