-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (99 loc) · 1.99 KB
/
style.css
File metadata and controls
119 lines (99 loc) · 1.99 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
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #f8f9fa;
}
.container {
min-height: 100vh;
padding: 20px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border-radius: 10px;
font-size: 1.5rem;
margin-bottom: 20px;
position: relative;
flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.header .left {
display: flex;
align-items: center;
flex: 1; /* Ensure the title and icon take available space */
}
.icon {
font-size: 1.3rem;
cursor: pointer;
margin-left: 10px; /* Space between icon and title */
}
.hamburger {
display: none; /* Hidden by default, will show on mobile */
font-size: 1.5rem;
cursor: pointer;
}
.card, .card1 {
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.card {
background-color: #fff;
}
.card1 {
background-color: lightblue;
}
.btn, .order-button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.order-overview {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.order-button {
margin-right: 10px;
}
@media (max-width: 768px) {
.header {
flex-direction: row; /* Keep header elements in a row on mobile */
justify-content: space-between;
font-size: 1.2rem;
}
.icon {
font-size: 1.3rem;
}
.hamburger {
display: block; /* Show hamburger icon on mobile */
}
.card, .card1 {
padding: 15px;
}
.order-button {
padding: 8px 15px;
}
}
@media (max-width: 480px) {
.header {
font-size: 1rem;
}
.icon {
font-size: 1.2rem;
}
.hamburger {
font-size: 1.5rem;
}
.order-button {
font-size: 0.9rem;
padding: 6px 12px;
}
}