-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe_details.css
129 lines (105 loc) · 1.89 KB
/
recipe_details.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.recipe-details-container {
display: flex;
flex-direction: column;
margin: 20px auto;
}
.comment-container {
flex: 1;
box-sizing: border-box;
margin-right:10px;
}
.recipe-details-div{
display:flex;
flex-direction: row;
}
.comments {
margin-top: 20px;
}
.comment-form {
margin-bottom: 20px;
}
textarea {
width: 100%;
padding: 8px;
margin-bottom: 10px;
}
.iconbtn {
font-size: 20px;
padding: 8px 12px;
color: #474444;
border: none;
cursor: pointer;
border-radius: 15px;
text-align: center;
}
.comment-list {
border-top: 1px solid #ddd;
padding-top: 10px;
}
.comment {
margin-bottom: 10px;
}
.comment p {
margin: 0;
}
.recipe-image-container {
flex: 1;
display: flex;
flex-direction: column;
padding: 1%;
padding-top: 20px;
}
.recipe-image {
height: 300px; /* Set a fixed height for the image container */
width: 100%;
border-radius: 15px;
border: 2px solid #777777;
}
.recipe-image img {
width: 100%;
height: 100%;
border-radius: 15px;
object-fit: cover; /* Maintain aspect ratio and cover the container */
}
.icons-container {
display: flex;
justify-content: space-between;
transform: translate(0, 20%);
align-items: center;
padding: 15px;
border-radius: 15px;
background-color: #dddddd;
}
.recipe-info {
flex: 1;
display: flex;
flex-direction: column;
padding: 20px;
box-sizing: border-box;
}
.details-container {
flex: 1;
height: 300px; /* Set a fixed height for the details container */
background-color: #dddddd;
padding: 20px;
border-radius: 8px;
}
.cooking-time,
.ingredients,
.instructions {
margin-bottom: 20px;
}
h2 {
color: #333;
}
ul, ol {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 8px;
}
.recipe-title{
margin-top:30px;
display:block;
}