-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
91 lines (74 loc) · 1.38 KB
/
app.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
/* app css stylesheet */
body {
font-family: Helvetica;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAYSURBVChTY6AW+A+lcQKCCgiCQW4FAwMAYRcF+/9jf+YAAAAASUVORK5CYII=) repeat;
}
h1 {
font-size: 60px;
font-family: 'Contrail One', cursive;
text-align: center;
margin-top: -10px;
padding-top: 50px;
padding-bottom: 20px;
color: white;
background-image: url("img/car-banner.jpg");
background-position: center;
}
h2 {
font-size: 36px;
font-family: 'Contrail One', cursive;
padding: 20px;
color: white;
background-color: #989898;
}
p {
background-color: white;
}
.details {
background-color: white;
}
.textDet {
padding: 20px;
}
button {
background-color: white;
border: 1px solid grey;
width: 150px;
padding: 5px;
-webkit-transition: all 150ms ease;
transition: all 150ms ease;
}
button:hover, button:focus
{
background-color: grey;
color: white;
}
button:active
{
background-color: white;
}
.intro {
font-weight: bold;
font-size: 30px;
margin-top: 50px;
margin-left: 30px;
}
.descrip {
font-weight: bold;
}
#searchBox {
padding: 20px;
background-color: white;
}
.carsList li {
list-style: none;
padding: 5px;
}
.carsList {
background-color: white;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
width: 70%;
margin: auto;
}