-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbikes-and-trikes.css
77 lines (65 loc) · 1.18 KB
/
bikes-and-trikes.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
body {
background-color: whitesmoke;
font-family: Arial, sans-serif;
}
.jumbotron {
background-color: #f8f9fa;
padding: 2em;
text-align: center;
}
.jumbotron h1 {
font-size: 3em;
}
.jumbotron h3 {
font-size: 2em;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin: 2em auto;
width: 90%;
}
.panel {
border: 1px solid #ddd;
border-radius: 5px;
background-color: white;
margin: 1em;
flex: 1 1 30%;
max-width: 30%;
}
.panel-heading {
background-color: #007bff;
color: white;
padding: 1em;
border-bottom: 1px solid #ddd;
text-align: center;
font-size: 1.5em;
}
.panel-body {
padding: 1em;
text-align: center;
}
.panel-body img {
width: 80%;
height: auto;
}
.panel-footer {
background-color: #f8f9fa;
padding: 1em;
text-align: center;
border-top: 1px solid #ddd;
}
.panel-footer a {
text-decoration: none;
color: #007bff;
}
.foot {
color: white;
background-color: rgba(0, 0, 0, 0.783);
padding: 1em;
text-align: center;
}
footer {
margin-top: 2em;
}