-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
171 lines (166 loc) · 3.2 KB
/
styles.css
File metadata and controls
171 lines (166 loc) · 3.2 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
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
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: rgb(246, 248, 212);
}
li,
a,
button {
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 16px;
color: #000000;
text-decoration: none;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 10%;
transition: all 0.3s ease 0;
}
.logo {
cursor: pointer;
}
.nav__links {
list-style-image: none;
}
.nav__links li {
display: inline-block;
padding: 0px 20px;
}
.nav__links li a {
transition: all 0.3s ease 0s;
padding: 6px;
}
.nav__links li a:hover {
color: rgb(31, 92, 1);
background-color: #f1e20c;
border-radius: 5px;
}
button {
padding: 9px 25px;
background-color: rgb(123, 226, 141);
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease 0s;
}
button:hover {
background-color: rgb(206, 226, 134);
}
.aboutus h1 {
font-family: "Montserrat", sans-serif;
padding: 10px;
font-weight: 400;
display: inline-block;
margin-left: 45%;
border-radius: 15px;
background-color: rgb(44, 79, 45);
color: azure;
}
.mainparagraph {
margin-top: 25px;
display: flex;
justify-content: center;
text-align: center;
padding: 5%;
}
.mainparagraph p {
color: rgb(230, 104, 104);
font-family: "Montserrat", sans-serif;
font-size: 6vh;
text-wrap: wrap;
width: 50%;
padding-top: 3%;
transition: all 0.3s ease 0s;
}
.mainparagraph p:hover {
background-color: rgb(255, 255, 255);
border-radius: 50px;
color: black;
margin: 5vh;
}
.mainparagraph img {
width: 30%;
height: 20%;
border-radius: 50px;
}
.menu {
display: flex;
justify-content: space-between;
transition: all 0.3s ease 0s;
gap: 3vh;
}
.menu_food {
display: inline-block;
justify-content: space-around;
padding-top: 30px;
width: 80%;
text-align: center;
font-family: "Montserrat", sans-serif;
margin: 2vh;
border-radius: 50px;
}
.text_menu {
margin-top: 2vh;
transition: all 0.3s ease 0s;
padding: 15px;
}
.photo_menu {
border-radius: 10%;
transition: all 0.2s ease;
}
.text_menu:hover {
background-color: #254429;
color: aliceblue;
border-radius: 50px;
}
.footer {
display: flex;
justify-content: space-between;
padding: 5vh;
margin-bottom: 10vh;
}
input {
width: 300px;
height: 30px;
font-size: 25px;
text-align: right;
color: #254429;
border-color: rgba(72, 112, 33, 0.849);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.rtl {
text-align: right;
direction: rtl;
padding-right: 20px;
font-family: "Montserrat", sans-serif;
color: #254429;
}
.submit {
margin-left: 70%;
}
.adress_text {
font-family: "Montserrat", sans-serif;
font-size: 2.5vh;
color: #254429;
font-weight: 900;
}
div a {
color: #254429;
transition: all 0.3s ease 0s;
font-size: 2.5vh;
padding: 10px;
}
div a:hover {
background-color: rgb(7, 136, 56);
color: #ffffff;
border-radius: 20px;
}
.fooyr {
background-color: rgb(3, 3, 0);
}