sandwitchboard/templates/style.css
2024-08-03 08:33:58 +02:00

41 lines
549 B
CSS

body {
font-size: 1.3rem;
background-color: lightgrey;
font-family: monospace;
}
main {
display: flex;
flex-flow: column;
align-items: center;
width: 100%;
height: 100%;
}
#content {
width: 80%;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
img {
max-width: 50%;
max-height: 500px;
}
.ingredient {
font-weight: bold;
color: green;
}
.cookware {
font-weight: bold;
color: brown;
}
.timer {
font-weight: bold;
color: blue;
}