-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
88 lines (74 loc) · 1.2 KB
/
styles.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
header, footer {
background-color: #ffa500;
text-align: center;
min-width: 500px;
}
main {
display: grid;
grid-template-columns: 250px 250px;
grid-template-rows: repeat(3, 450px);
grid-gap: 20px;
margin-top: 44px;
grid-auto-rows: 500px;
}
h2 {
font-family: Poppins;
font-size: 18px;
font-weight: 600;
letter-spacing: 0.3px;
text-align: left;
color: #ffa500;
padding: 10px 0px 10px 10px;
}
img {
width: 100%;
height: auto;
}
.recipe {
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.a {
}
.c {
}
.time {
padding-left: 10px;
padding-top: 10px;
width: 20px;
height: auto;
}
.mins {
display: inline-block;
font-family: Poppins;
font-size: 14px;
font-weight: 500;
letter-spacing: 0.3px;
text-align: left;
color: #4a4a4a;
position: relative;
bottom: 5px;
}
.description {
font-family: Work Sans;
font-size: 14px;
font-weight: 300;
line-height: 1.29;
letter-spacing: 0.1px;
text-align: left;
color: #4a4a4a;
padding: 10px 0px 10px 10px;
border-top: 1px solid #4a4a4a;
}
.logo {
width: 115px;
height: 21.1px;
object-fit: contain;
padding: 20px;
}
.container {
min-width: 500px;
margin: auto;
}
footer {
margin-top: 44px;
}