-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (84 loc) · 1.54 KB
/
Copy pathstyles.css
File metadata and controls
97 lines (84 loc) · 1.54 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
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #dfe7ee;
}
/* Navbar styles */
.navbar {
background-color: #4206e6;
padding: 10px;
text-align: center;
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.navbar ul li {
display: inline;
margin-right: 20px;
}
.navbar ul li a {
text-decoration: none;
color: white;
padding: 8px 16px;
background-color: #11df22;
border-radius: 5px;
}
.navbar ul li a:hover {
background-color: #0d31d4; /* Change color on hover */
}
/* Main content styles */
.main-content {
text-align: center;
padding: 50px;
background-color: #fafafa;
}
.content-container {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
max-width: 1200px;
margin: 0 auto;
padding: 30px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.text-section {
flex: 1;
text-align: left;
padding: 20px;
}
.text-section h1 {
color: #333;
font-size: 2.5rem;
margin-bottom: 20px;
}
.text-section p {
font-size: 1.2rem;
color: #666;
margin-bottom: 20px;
}
/* Image section */
.image-section {
flex: 1;
}
.vehicle-image {
width: 100%;
max-width: 400px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* Footer styles */
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}