39 lines
509 B
CSS
39 lines
509 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%;
|
|
max-height: 500px;
|
|
}
|
|
|
|
.ingredient {
|
|
font-weight: bold;
|
|
color: green;
|
|
}
|
|
|
|
.cookware {
|
|
font-weight: bold;
|
|
color: brown;
|
|
}
|
|
|
|
.timer {
|
|
font-weight: bold;
|
|
color: blue;
|
|
}
|