-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.css
92 lines (75 loc) · 1.38 KB
/
master.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
html{
box-sizing: border-box;
}
body{
font-size: 15px;
font-family: 'Lexend Deca', sans-serif;
}
p{
color: white;
}
.row{
width: 1083px;
margin:60px auto;
}
#sedan{
background-color: hsl(31, 77%, 52%);
border-top-left-radius: 1rem;
border-bottom-left-radius: 1rem;
padding: 70px;
}
#suv{
background-color: hsl(184, 100%, 22%);
padding: 70px;
}
#luxury{
background-color:hsl(179, 100%, 13%);
border-top-right-radius: 1rem;
border-bottom-right-radius: 1rem;
padding: 70px;
}
.img{
margin-bottom: 40px;
}
#sedan div h2,#suv div h2,#luxury div h2{
font-family: 'Big Shoulders Display', cursive;
font-weight: 700;
color: white;
}
#sedan button{
color:hsl(31, 77%, 52%) ;
}
#suv button{
color:hsl(184, 100%, 22%);
}
#luxury button{
color: hsl(179, 100%, 13%);
}
.button{
border-style: none;
border-radius: 20px/20px;
background-color: white;
height:40px;
width:134px;
margin-top: 50px;
}
.button:hover{
border: 2px solid white;
background-color: inherit;
}
.button:hover span{
color: white;
}
@media screen and (max-width:413px){
.row{
width:399px;
}
#sedan{
border-top-right-radius: 1rem;
border-bottom-left-radius: 0;
}
#luxury{
border-top-right-radius: 0;
border-bottom-left-radius: 1rem;
}
}