-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipe.css
87 lines (80 loc) · 1.28 KB
/
recipe.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
header{
font-size: 18px;
font-family: arial;
max-width:600px;
text-align: center;
margin:auto;
color: #C32026;
background-color: #333;
border: 3px SOLID #C32026;
border-radius: 8px;
margin-bottom: 10px;
font-weight: bold;
padding:5px;
}
a{
color:#C32026;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7);
max-width: 600px;
margin: auto;
text-align: center;
font-family: arial;
background-color:#4e0c0f;
color: #E7A5A8;
border-radius: 15px 50px;
}
.serves {
color: grey;
font-size: 22px;
font-weight:bold;
}
.card .heading {
border: none;
outline: 0;
padding: 3%;
color: white;
background-color: #C32026;
text-align: center;
width: 94%;
font-size: 18px;
}
.card .servings {
border: none;
outline: 0;
padding: 12px;
color: white;
background-color: #3a090b;
text-align: center;
cursor: pointer;
width: 95%;
font-size: 18px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even){background-color: #3a090b}
th {
background-color: #C32026;
color: white;
}
.hint{
color:#ab8688;
text-align:center;
}
.optional{
color:#fff;
background-color:#4CAF50;
padding:3px;
border:2px Solid #4CAF50;
border-radius:5px;
text-align:center;
font-size:15px;
max-width:40%;
}