forked from pabloweber/Frigo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipePage.css
More file actions
77 lines (67 loc) · 1000 Bytes
/
recipePage.css
File metadata and controls
77 lines (67 loc) · 1000 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
74
75
76
77
body{
background-color: white;
font-family: "Avenir Next";
margin: 0;
padding: 0;
}
#nav{
width: 100%;
height: 121px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: #f2f2f2;
line-height: 120px;
}
#navContainer{
max-width: 1200px;
height: 120px;
margin: 0 auto;
padding: 0 30px;
}
#logo{
font-size: 50px;
font-weight: 700;
color: #0099FF;
margin: 0;
display: block;
text-decoration: none;
}
#logoImg{
height: 50px;
position: absolute;
top: 33px;
margin-left: 170px;
cursor: pointer;
}
#container{
width: 1200px;
margin: 0 auto;
margin-top: 40px;
margin-bottom: 40px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: #f2f2f2;
}
#main{
}
#img{
float: left;
width: 520px;
margin-top: 50px;
}
#title{
width: 500px;
float: left;
margin-left: 90px;
margin-right: 90px;
font-size: 40px;
}
#summary{
width: 500px;
float: left;
margin: 20px 90px 0px 90px;
}
.clear{
clear:both;
line-height:0;
}