-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (65 loc) · 1.22 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body {
padding: 20%;
background-color: hsl(0, 0%, 95%);
font-size: 15px;
font-family: 'Lexend Deca', sans-serif;
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
.custom-card {
text-align: left;
padding: 7% 5% 2% 7%;
color: #fff;
line-height: 1.5;
}
.custom-card h1 {
color: hsl(0, 0%, 95%);
font-family: 'Big Shoulders Display', cursive;
}
.custom-card p {
color: hsla(0, 0%, 100%, 0.75);
line-height: 1.8;
}
.card-img {
width: 32%;
margin-bottom: 2rem;
}
.text-uppercase {
margin-bottom: 2rem;
}
.card-button {
border-radius: 2.3rem;
margin: 4rem 0 2rem;
width: 70%;
background-color: hsl(0, 0%, 95%);
font-size: 15px;
font-family: 'Lexend Deca', sans-serif;
padding: 1rem;
}
.sedan {
background-color: hsl(31, 77%, 52%);
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.sedan .card-button {
color: hsl(31, 77%, 52%);
}
.suv {
background-color: hsl(184, 100%, 22%);
}
.suv .card-button {
color: hsl(184, 100%, 22%);
}
.luxury {
background-color: hsl(179, 100%, 13%);
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.luxury .card-button {
color: hsl(179, 100%, 13%);
}