odin-flex/04-flex-information/style.css

40 lines
531 B
CSS
Raw Permalink Normal View History

2023-12-29 16:21:21 +00:00
body {
font-family: 'Courier New', Courier, monospace;
}
2023-12-29 16:41:30 +00:00
.flex {
display: flex;
justify-content: center;
gap: 52px;
margin: 32px 0 0 0;
}
.tile {
width: 200px;
flex: 0 0 auto;
text-align: center;
}
2023-12-29 16:21:21 +00:00
img {
width: 100px;
height: 100px;
}
.title {
font-size: 36px;
font-weight: 900;
2023-12-29 16:41:30 +00:00
text-align: center;
2023-12-29 16:21:21 +00:00
}
/* do not edit this footer */
.footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
background: #eee;
}