-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (124 loc) · 1.87 KB
/
style.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
@media (max-width: 730px) {
body {
flex-direction: column;
margin: 300px 0;
}
}
.luxury,
.sedans,
.suvs {
width: 250px;
display: flex;
flex-direction: column;
padding: 40px;
}
@media (max-width: 730px) {
.luxury,
.sedans,
.suvs {
flex-direction: column;
padding: 40px;
}
}
.sedans {
background: hsl(31, 77%, 52%);
border-radius: 10px 0px 0px 10px;
}
@media (max-width: 730px) {
.sedans {
border-radius: 10px 10px 0px 0px;
}
}
.suvs {
background: hsl(184, 100%, 22%);
}
.luxury {
background: hsl(179, 100%, 13%);
border-radius: 0px 10px 10px 0px;
}
@media (max-width: 730px) {
.luxury {
border-radius: 0px 0px 10px 10px;
}
}
.sedans img,
.suvs img,
.luxury img {
height: 40px;
width: 64px;
}
@media (max-width: 730px) {
}
.title {
color: white;
margin-top: 32px;
font-family: 'Big Shoulders Display', cursive;
font-weight: 700;
font-size: 32px;
}
@media (max-width: 730px) {
.title {
margin-top: 14px;
font-size: 25px;
}
}
.description {
margin-top: 20px;
font-family: 'Lexend Deca', sans-serif;
color: white;
font-size: 12px;
font-weight: 400;
line-height: 19.8px;
}
@media (max-width: 730px) {
.description {
margin-top: 14px;
}
}
.button {
display: flex;
align-items: center;
justify-content: center;
background: white;
padding: 14px 14px;
width: 110px;
height: 35px;
border-radius: 20px;
font-family: 'Lexend Deca', sans-serif;
font-size: 12px;
font-weight: 400;
margin-top: 64px;
cursor: pointer;
}
@media (max-width: 730px) {
.button {
margin-top: 32px;
}
}
.text1 {
color: hsl(31, 77%, 52%);
}
.text2 {
color: hsl(184, 100%, 22%);
}
.text3 {
color: hsl(179, 100%, 13%);
}
.button:hover > div {
color: white;
}
.button:hover {
background: none;
border: 2px solid rgb(255, 255, 255);
}