sandwitchboard/templates/style.css

40 lines
509 B
CSS
Raw Normal View History

body {
2024-08-03 07:33:58 +01:00
font-size: 1.3rem;
background-color: lightgrey;
font-family: monospace;
}
2024-07-05 16:24:12 +01:00
2024-08-03 07:33:58 +01:00
main {
display: flex;
flex-flow: column;
align-items: center;
width: 100%;
height: 100%;
}
#content {
width: 80%;
display: flex;
2024-08-03 07:54:25 +01:00
flex-flow: column wrap;
2024-08-03 07:33:58 +01:00
}
2024-08-03 07:54:25 +01:00
#content img {
max-width: 90%;
2024-08-03 07:33:58 +01:00
max-height: 500px;
}
2024-07-05 16:24:12 +01:00
.ingredient {
font-weight: bold;
2024-07-05 16:24:12 +01:00
color: green;
}
.cookware {
font-weight: bold;
2024-07-06 05:23:32 +01:00
color: brown;
2024-07-05 16:24:12 +01:00
}
.timer {
font-weight: bold;
2024-07-05 16:24:12 +01:00
color: blue;
}