-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (64 loc) · 1.43 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
body{
display: flex;
align-items: center;
height: 100vh;
position: relative;
}
.parent{
font-size: 15px;
display: flex;
border-radius: 50px;
text-align: left;
width: 50%;
color: white;
margin: 0 auto;
}
.sedans {
background-color: hsl(31, 77%, 52%);
padding: 130px 80px 10px 50px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
width: 180px;
}
.suvs {
background-color: hsl(184, 100%, 22%);
padding: 130px 80px 10px 50px;
width: 180px;
}
.luxury {
background-color: hsl(179, 100%, 13%);
padding: 130px 80px 10px 50px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
width: 180px;
}
.sedans-button {
background-color: hsl(0, 0%, 95%);
border: 10px solid transparent;
color: hsl(31, 77%, 52%);
margin: 100px 70px 40px 20px;
border-radius: 25px;
width: 140px;
height: 30px;
padding: 10px 0px 20px 0px;
}
.suvs-button {
background-color: hsl(0, 0%, 95%);
border: 10px solid transparent;
border-radius: 25px;
color: hsl(184, 100%, 22%);
margin: 100px 70px 40px 20px;
padding: 10px 0px 20px 0px;
width: 140px;
height: 30px;
}
.luxury-button {
background-color: hsl(0, 0%, 95%);
border: 10px solid transparent;
color: hsl(179, 100%, 13%);
margin: 100px 70px 40px 20px;
border-radius: 25px;
padding: 10px 0px 20px 0px;
width: 140px;
height: 30px;
}