-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
119 lines (101 loc) · 1.84 KB
/
menu.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
/* Основные стили */
body {
font-family: Arial, sans-serif;
color: #333;
background-color: #f8f8f8;
margin: 0;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
/* Заголовок */
.header {
text-align: center;
margin-bottom: 20px;
}
.header img {
margin-bottom: 10px;
}
.header h1 {
font-size: 28px;
color: #d32f2f;
margin: 0;
}
.category-time {
font-size: 16px;
color: #555;
}
/* Карточки блюд */
.menu-category {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
margin-top: 20px;
}
.dish-card {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #fafafa;
transition: box-shadow 0.3s;
}
.dish-card:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dish-info {
max-width: 80%;
}
.dish-name {
font-size: 20px;
font-weight: bold;
margin: 0;
color: #333;
}
.dish-description {
font-size: 14px;
color: #666;
margin: 5px 0 0;
}
.dish-price {
font-size: 18px;
font-weight: bold;
color: #d32f2f;
}
/* Ссылка "Назад" */
.back-link {
display: inline-block;
margin-top: 15px;
font-size: 16px;
color: #d32f2f;
text-decoration: none;
}
.back-link:hover {
text-decoration: underline;
}
/* Подвал */
.footer {
text-align: center;
font-size: 14px;
color: #666;
margin-top: 30px;
}
.footer img {
margin-top: 10px;
}
/* Стиль для подкатегорий */
.subcategory {
font-size: 22px;
font-weight: bold;
color: #d32f2f;
margin-top: 20px;
margin-bottom: 10px;
}