forked from chasesinghofen/chasesinghofen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
car.css
90 lines (79 loc) · 1.82 KB
/
car.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
@import url('https://fonts.googleapis.com/css?family=Kaushan+Script|Satisfy');
@import url('https://fonts.googleapis.com/css?family=Calligraffitti');
.jumbotron {
background-image: url("https://images.pexels.com/photos/248159/pexels-photo-248159.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
background-size: cover;
height: 50vh;
}
body{
background-color:rgb(199, 199, 196);
overflow-y: scroll;
overflow-x: hidden;
}
.container{
margin-top: 13px;
}
footer{
text-align: center;
color: black;
margin: 20px;
font-family: 'Kaushan Script', cursive;
}
.hr{
border: 0;
height: 0;
box-shadow: 0 0 10px 1px black;
}
.card-deck .card-img-top:hover{
-webkit-transition: all 1s ease-in-out; /* Safari and Chrome */
-moz-transition: all 1s ease; /* Firefox */
-ms-transition: all 1s ease; /* IE 9 */
-o-transition: all 1s ease; /* Opera */
transition: all 1s ease;
}
.card-deck .card-img-top:hover {
-webkit-transform:scale(1.25); /* Safari and Chrome */
-moz-transform:scale(1.25); /* Firefox */
-ms-transform:scale(1.25); /* IE 9 */
-o-transform:scale(1.25); /* Opera */
transform:scale(1.25);
}
.card-body{
background-color: white;
border: 0;
}
.card{
margin: none;
}
h3 {
color: white;
font-family: 'Kaushan Script', cursive;
font-size: 50px;
}
span{
font-size:25px;
color: white;
font-family: 'Kaushan Script', cursive;
}
p{
font-family: 'Calligraffitti', cursive;
font-size: 20px;
}
h5 {
font-weight: 600;
font-family: 'Kaushan Script', cursive;
color: blue;
}
#more-info{
font-weight: 400;
font-family: 'Kaushan Script', cursive;
color: blue;
text-align: center;
}
a{
float: left;
}
a:hover {
color: hotpink;
text-decoration: none;
}