-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (54 loc) · 972 Bytes
/
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
body{
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
padding: 0px;
background-color: black;
color: beige;
}
body h1{text-align: center;
}
header{
background-color:brown ;
color: azure;
text-align: center;
}
nav ul li {
list-style-type: none;
padding: 5px;
text-align: center;
display: inline;
}
nav ul li a{
text-decoration: none;
color:blue;
}
.hero{
color: whitesmoke;
text-align: center;
padding: 50px 0px;
}
.cars-list{
display: flex;
justify-content: space-around;
margin: 20px 0px;
}
.car{background-color: white;
border-radius: 8px;
padding: 15px;
text-align: center;
width: 30%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.car img {
max-width: 100%;
border-radius: 8px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: relative;
bottom: 0;
width: 100%;
}