-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
138 lines (119 loc) · 2.63 KB
/
styles.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* General Styles */
body {
font-family: Georgia, serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
text-align: center;
}
.container {
margin: 50px auto;
padding: 20px;
width: 90%;
max-width: 750px;
background-color: rgba(89, 86, 85, 0.945);
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Headers */
h1, h2 {
color: #000000;
}
/* Navigation Buttons */
.nav-buttons {
margin: 20px 0;
}
.nav-buttons a {
text-decoration: none;
padding: 10px 20px;
margin: 10px;
background-color: #b7a33f;
color: white;
border-radius: 50px;
transition: background-color 0.3s;
}
.nav-buttons a:hover {
background-color: #45a049;
}
/* Form Styles */
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
button {
padding: 10px 10px;
background-color: #e84205;
color: rgb(0, 0, 0);
border: none;
border-radius: 50px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #3554e2;
}
/* Images */
.main-image {
width: 100%;
height: auto;
margin: 20px 0;
}
.menu-item img, .order-summary img, .review img {
width: 80px;
height: 80px;
margin-right: 20px;
}
.review img {
border-radius: 50%;
}
/* Menu and Order Summary */
.menu-item, .order-summary, .review {
border-bottom: 1px solid #000000;
padding: 10px 0;
display: flex;
border-radius: 20px;
justify-content: space-between;
align-items: center;
}
/* Background Images */
.login-background {
background-image: url('Media/order.jpg'); /* Add the path to your image */
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.home-background {
background-image: url('Media/order1.jpg'); /* Add the path to your image */
background-size: cover;
background-position: center;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Specific Page Styles */
.order-container {
padding: 40px;
background-color: rgba(255, 255, 255, 0.95);
}
#orderbg {
background-image: url('Media/order.jpg'); /* Add the path to your image */
background-size: cover;
background-position: center;
height: 100vh;
}
.checkout-button {
display: inline-block;
margin-top: 20px;
}