-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZagros Fast Food-style.css
124 lines (107 loc) · 2.1 KB
/
Zagros Fast Food-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
@charset "utf-8";
body{
background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0,0.75)), url("https://s6.uupload.ir/files/top-view-fast-food-mix-mozzarella-sticks-club-sandwich-hamburger-mushroom-pizza-caesar-shrimp-salad-french-fries-ketchup-mayo-cheese-sauces-table_yk63.jpg");
background-size: cover;
background-position: center;
height: 600px;
font-family:Vazirmatn Light;
font-size: 20px;
color: white;
}
.logo{
margin:5px 0px 0px 5px;
border-radius: 10px;
}
.logo:hover{
cursor: pointer;
transform: scale(1.2);
}
.continer{
direction: rtl;
margin: -82px 0px;
}
ul {
display: inline-block;
list-style-type: none;
}
.menu li{
float:right;
padding: 6px 30px 6px 30px;
text-align: center;
transition: all ease 0.5s;
position: relative;
border-radius: 25px;
height: 35px;
width: 88px;
}
.menu li:hover{
background-color: #FBDBDC;
color: #030574;
padding: 6px 30px 6px 30px;
cursor: pointer;
}
.menu a{
text-decoration: none;
color: white;
}
li.submenu ul{
font-size: 19px;
position: absolute;
display: none;
margin: 5px -69px 0px 0px;
}
li.submenu ul li{
margin-top:7px;
}
li.submenu:hover ul {
display: block;
color: white;
}
li.submenu::after {
content: '\25BC';
font-size: 15px;
padding-right: 3px;
color:#FB7678;
}
li.submenu:hover::after {
content: '\25B2';
font-size: 15px;
padding-right: 3px;
color:#E913C4;
}
.text{
background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2));
width: 32%;
height: 65px;
text-align: center;
padding-top: 20px;
margin-top: 203px;
margin-left: auto;
margin-right: auto;
border: 2px solid #F8BC8C;
border-radius: 25px;
font-size: 27px;
transition: all ease 0.5s;
}
.text:hover{
background-image: linear-gradient(rgba(255,255,255,0.6),rgba(255,255,255,0.6));
border:2px solid #020E47;
color: black;
cursor: pointer;
opacity: 0.5;
transform: scale(1.2);
}
.media img{
border: 2px solid #F7FA85;
background-color: #FFDDCD;
border-radius: 10px;
margin-top: 375px;
width: 25px;
height: 25px;
padding: 2px;
margin-left: 2px;
}
.media img:hover{
cursor: pointer;
opacity: 0.5;
}