I am happy that I was able to make the indentations in the lists in the ‘Preparation’ and ‘Ingredients’ sections correctly. After a little research, I learnt how to do it and successfully added it to my project.
Here is the css code I wrote for the ‘preparation’ part ;
.preparation{
background-color:hsl(330, 100%, 98%);
border-radius: 15px;
padding: 10px 25px;
line-height: 30px;
}
.preparation-title{
margin-bottom: .4rem;
color: hsl(332, 51%, 32%);
}
.preparation-list{
list-style: none;
padding-left: 0;
text-indent: 30px;
}
.preparation-list li{
position: relative;
margin-bottom: 10px;
line-height: 1.6;
}
.preparation-list li::before{
content: ".";
color: hsl(332, 51%, 32%);
font-size: 45px;
position:absolute;
left: -30px;
top: -37px;
}
What challenges did you encounter, and how did you overcome them?Honestly, I had a hard time making this project and I couldn't overcome some difficulties. Therefore, there are some errors in my project.
What specific areas of your project would you like help with?Here are the areas where I need help;
--> Firstly, I couldn't get the sentences to move to the bottom line from the desired word.
--> I couldn't make the desired mobile responsive design.
--> Finally, I could not fully provide the indentation in the ‘Instructions’ section.
I would appreciate your help in solving these problems and for other problems in my project, if any.