-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (45 loc) · 740 Bytes
/
style.css
File metadata and controls
49 lines (45 loc) · 740 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
*{
margin: 0;
padding: 0;
line-height: 1.5;
}
.main{
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
img{
width: 700px;
display: inline-block;
vertical-align: top;
}
#recipe-content{
width: 500px;
display: inline-block;
}
.recipe.content h1,
.dishes li a {
color: red;
text-transform: capitalize;
}
.recipe.dishes ul{
display: inline-block;
width: 400px;
list-style: none;
}
.recipe.info{
display: inline-block;
width: 200px;
padding: 20px;
}
#download-recipe {
background-color: red;
padding: 10px;
display: block;
color: white;
text-align: center;
width: 200px;
text-decoration: none;
}
.info p{
display: inline;
}