You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
907 B
CSS

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.25rem;
}
.intro {
margin: 16px;
}
.intro .recipe {
border: 1px solid currentColor;
}
h1,
h2,
h3 {
margin: 0;
}
ul,
ol {
padding: 0;
list-style-position: inside;
}
em {
display: block;
margin: 1em 0;
font-weight: bold;
}
/* COOCKBOOK */
.cookbook {
margin: 16px;
padding: 24px;
background-color: #cec;
border-radius: 16px;
}
.cookbook-info {
margin: 16px 0;
font-style: italic;
}
.recipes {
display: flex;
flex-direction: row;
flex-wrap: wrap;
row-gap: 16px;
column-gap: 16px;
}
.recipe {
flex: 1;
display: inline-block;
background-color: #ffffff;
width: 80ch;
border-radius: 16px;
padding: 1ch;
}
.recipe .title {
margin-bottom: 8px;
}
.recipe .info {
margin: 16px 0;
}
.recipe .ingredients {
margin: 16px 0;
}
.recipe ul,
.recipe ol {
margin: 0;
}
.intro .recipe {
margin: 16px 0;
}