-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (102 loc) · 1.84 KB
/
style.css
File metadata and controls
108 lines (102 loc) · 1.84 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
body{
font-family: 'Anton', sans-serif;
font-family: 'Otomanopee One', sans-serif;
margin: 0;
}
.header {
padding: 5px;
text-align: center;
background: #1abc9c;
color: white;
font-size: 20px;
}
h1{
font-size: 50px;
}
.span-color{
color: rgb(230, 43, 42);
}
.container{
display: flex;
margin-bottom: 100px;
}
.first-width{
width: 50%;
padding: 6%;
}
.first-width img{
width: 120%;
}
.order-button{
text-decoration: none;
background-image: linear-gradient(tomato,orange);
padding: 10px 30px;
border-radius: 40px;
color: wheat;
font-weight: 500;
}
.about-me{
background-image: url(Images/Frame.jpg);
background-repeat: no-repeat;
background-size: 100%;
}
.contact-us{
text-decoration: none;
background-image: linear-gradient(tomato,orange);
padding: 10px 30px;
border-radius: 40px;
color: wheat;
font-weight: 500;
}
.image-size{
height: 70%;
}
.recipies{
text-align: center;
width: 90%;
margin: 150px auto 200px;
}
.map{
text-align: center;
width: 100%;
margin: 50px auto 200px;
}
.recipies-blog{
display: flex;
flex-direction: column;
width: 30%;
padding: 20px 20px;
text-align: center;
align-items: center;
box-shadow: 10px 10px 60px grey;
border-radius: 20px;
margin-top: 50px;
text-align: justify;
margin-right: 5%;
padding-left: 20px;
}
.recipies-blog img{
width: 100%;
border-radius: 20px;
}
.review{
width: 90%;
margin: auto;
display: flex;
gap: 20px;
text-align: center;
box-shadow: 10px 10px 30px grey;
border-radius: 20px;
padding: 40px 0;
margin-bottom: 100px;
}
.review-item {
width: 100%;
}
footer{
padding: 10px;
text-align: center;
background: #1abc9c;
color: white;
font-size: 20px;
}