-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (82 loc) · 1.64 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
89
90
91
92
93
body {
background-color: antiquewhite;
display: flex;
justify-content: space-between;
margin: 2rem 1.5rem;
padding: 10px 10px;
}
.recipe-card {
background-color: white;
box-shadow: 0, 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: auto;
text-align: center;
font-family: Arial, sans-serif;
border-radius: 12px;
line-height: 1.7;
}
img {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
object-fit: cover;
}
.card-data {
margin: 0 1.5rem .5rem;
font-size: 13px;
}
.dessert {
display: inline-block;
color: white;
background-color: burlywood;
font-size: 15px;
padding-inline: 15px;
font-weight: 500;
margin: 0 1.5rem 2rem 1.5rem;
border-radius: 19px;
position: relative;
left: -30%;
}
.card-stats {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
align-items: center;
}
.card-stats li {
display: flex;
align-items: center;
margin: 2rem;
color: grey;
}
.card-stats i {
margin: 1px;
}
h1 {
color: burlywood;
font-size: 25px;
font-family: Tahoma;
border-bottom: 2px solid burlywood;
}
.text {
color: #000;
font-size: 15px;
font-style: italic;
margin-bottom: 10px;
}
button {
display: inline-block;
padding: 10px;
color: white;
background: burlywood;
text-align: center;
cursor: pointer;
font-size: 20px;
width: 100%;
outline: 0;
border: none;
border-radius: 5px 5px 5px 5px;
}
button:hover, a:hover {
opacity: 0.7;
}