-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (58 loc) · 915 Bytes
/
styles.css
File metadata and controls
73 lines (58 loc) · 915 Bytes
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
body {
font-family: Verdana, Tahoma, sans-serif;
background-color: blanchedalmond;
}
ul li {
list-style-type: none;
}
h2 {
font-weight: bold;
color:rgb(198, 104, 77);
}
.title {
font-size: 40px;
color: crimson;
margin-left: 10px;
}
.recipe-order {
display: inline-block;
margin: 50px 10px;
padding: 10px;
border: 2px solid rgb(186, 66, 186);
}
.ingredient-list li {
padding: 4px;
}
.recipe-content {
margin-left: 10px;
}
ol > li {
padding-bottom: 10px;
}
img {
vertical-align: middle;
margin-right: 10px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
color: crimson;
}
a:active {
text-decoration: none;
}
a {
color: inherit;
}
.recipe-list {
font-size: 1.2rem;
}
.recipe-card-img {
max-width: 150px;
height: 200px;
}