sandwitchboard/templates/style.css
2024-08-18 19:27:58 +02:00

38 lines
486 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 wrap;
}
#content img {
max-width: 90%;
}
.ingredient {
font-weight: bold;
color: green;
}
.cookware {
font-weight: bold;
color: brown;
}
.timer {
font-weight: bold;
color: blue;
}