-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
154 lines (131 loc) · 2.49 KB
/
index.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* Reset CSS */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
}
.container {
width: 80%;
margin: 0 auto;
}
/* Header Styles */
.header {
background-color: #fff;
padding: 20px 0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.Logo {
width: 50px; /* Adjust the size as needed */
height: 50px; /* Adjust the size as needed */
background-color: #ff4500; /* Adjust the color as needed */
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
color: #fff; /* Adjust the text color as needed */
font-weight: bold;
text-transform: uppercase;
margin-right: 10px;
}
.brand {
font-size: 1.5rem;
font-weight: bold;
color: #333;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-list {
list-style-type: none;
display: flex;
}
.nav-list li {
margin-right: 20px;
}
.nav-list a {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s;
}
.nav-list a:hover {
color: #ff4500;
}
/* Section Styles */
.section {
padding: 50px 0;
}
.section-title {
margin-bottom: 20px;
font-size: 2rem;
color: #333;
}
.section-description {
color: #555;
}
/* Pizza Styles */
.pizza {
margin-bottom: 30px;
}
.pizza-image {
width: 100%;
max-height: 200px;
object-fit: cover;
margin-bottom: 10px;
}
.pizza-title {
font-size: 1.5rem;
color: #333;
margin-bottom: 5px;
}
.pizza-description {
color: #555;
}
/* Button Styles */
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #ff4500;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #e04100;
}
/* Contact Form Styles */
.contact-form {
max-width: 400px;
}
.form-label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #333;
}
.form-input,
.form-textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* Footer Styles */
.footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
.footer-text {
font-size: 0.9rem;
}