-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (121 loc) · 2.09 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (121 loc) · 2.09 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
}
a,
h1 {
text-transform: capitalize;
}
section {
margin-bottom: 120px;
}
h1 {
font-size: 55px;
font-weight: 700;
}
p {
line-height: 28px;
font-size: 16px;
}
.orange-color {
color: orange;
}
.flexible-box {
display: flex;
align-items: center;
margin-top: 100px;
}
.half-width {
width: 80%;
margin-left: 5%;
margin-right: 5%;
}
.half-width img {
width: 80%;
}
.btn-link {
text-decoration: none;
color: #fff;
background-image: linear-gradient( to right, red, orange);
padding: 18px 40px;
border-radius: 30px;
margin-top: 15px;
display: inline-block;
font-weight: 700;
}
.about-area {
background-image: url( images/shapes/7.png );
background-repeat: no-repeat;
background-size: cover;
height: 700px;
}
.about-area img {
display: inline-block;
padding-left: 150px;
height: 650px;
padding-top: 52px;
}
.about-area p {
padding-right: 70px;
}
.recipie-header h2,
.recipie-header p {
text-align: center;
width: 620px;
margin: 30px auto;
}
.recipie-header h2 {
font-size: 40px;
font-weight: 700;
}
.recipie-area .recipie-item {
width: 44%;
box-shadow: 10px 10px 40px gray;
padding: 20px;
border-radius: 30px;
}
.recipie-area .recipie-item:nth-child(1) {
margin-left: 5%;
margin-right: 1%;
}
.recipie-area .recipie-item:nth-child(2) {
margin-left: 1%;
margin-right: 5%;
}
.recipie-area .recipie-item img {
width: 100%;
height:300px;
}
.one-third {
/* display: inline-block; */
float: left;
width: 33.3%;
text-align: center;
}
.social-area {
margin: 0 5%;
margin-bottom: 120px;
display: block;
box-shadow: 10px 10px 40px grey;
padding: 60px 0px;
border-radius: 20px;
}
.one-third p {
margin: 0;
}
.one-third h1 {
margin: 0px 0;
}
.social-area::after {
content: "";
clear: both;
display: table;
}
footer {
text-align: center;
background: #000;
padding-bottom: 120px;
padding-top: 30px;
color: #fff;
font-weight: 700;
}