-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
190 lines (177 loc) · 3.17 KB
/
style.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600;700;800&display=swap");
/* Global css */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Montserrat", sans-serif;
}
.container {
width: 1240px;
margin: 0 auto;
}
.text-center {
text-align: center;
}
.btn {
background: linear-gradient(88.33deg, #fba24f -7.64%, #ff1e1e 145.94%);
box-shadow: 0px 2px 30px rgba(252, 143, 73, 0.5);
border-radius: 100px;
color: white;
padding: 15px 20px;
font-size: 20px;
cursor: pointer;
border: none;
font-weight: 600;
}
.shadow {
background: #ffffff;
box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
border-radius: 20px;
}
.card-shadow {
background: #ffffff;
box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
border-radius: 30px;
}
/* Header Section Start */
header {
padding: 50px 0px;
}
.header-wraper {
display: flex;
align-items: center;
justify-content: space-between;
}
.header-content {
padding: 10px;
}
.header-content h1 {
font-size: 60px;
color: #575757;
padding-bottom: 20px;
}
.header-content h1 span {
color: orange;
}
.header-content p {
max-width: 500px;
color: #828282;
font-size: 20px;
padding-bottom: 20px;
}
.header-img img {
width: 100%;
}
/* Header Section End */
/* About Section Start */
#about {
background-image: url(./images/about-bg.png);
background-repeat: no-repeat;
background-size: cover;
}
.about-wraper {
display: flex;
align-items: center;
}
.about-wraper .img {
padding-left: 50px;
}
.img img {
width: 100%;
}
.about-content {
padding: 50px 100px;
}
.about-content h2 {
font-size: 40px;
padding-bottom: 36px;
color: #707070;
}
.about-content p {
color: #18191f;
padding-bottom: 50px;
}
.about-content button {
}
/* About Section End */
/* My Recipies Section Start */
#recipi-section {
margin: 50px 0px;
}
.recipi-title h2 {
padding: 10px 0px;
font-size: 36px;
color: #676767;
}
.recipi-title p {
max-width: 706px;
margin: 10px auto;
}
/* Card css */
.recipi-card-container {
margin: 50px 0px;
display: flex;
justify-content: space-between;
}
.card {
width: 377px;
padding: 20px;
/* margin: 0 54px; */
transition: all 0.5s;
}
.card:hover {
transform: scale(1.1);
cursor: pointer;
}
.card:first-child {
margin-left: 0px;
}
.card:last-child {
margin-right: 0px;
}
.card-img img {
width: 100%;
}
.card-title h4 {
font-size: 28px;
padding-top: 30px;
padding-bottom: 10px;
}
.card-description {
text-align: justify;
}
/* My Recipe Section End */
/* Count Section Start */
#count-section {
margin: 50px 0px;
}
.count-wraper {
display: flex;
justify-content: center;
padding: 64px 0px;
}
.count-item {
width: 350px;
}
.count-item h2 {
font-size: 48px;
}
/* Count Section End */
/* Footer Section Style start */
#footer {
background-color: #0b0d17;
}
.footer-wraper h4 {
color: #5b5b5b;
font-size: 30px;
padding: 20px 0px;
}
.footer-wraper h4 span {
color: orange;
}
.footer-wraper p {
padding: 10px 0px 20px 0px;
color: white;
}