-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (89 loc) · 1.62 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
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&family=Outfit:wght@200;400;800&display=swap');
/*
font-family: 'Karla', sans-serif;
font-family: 'Outfit', sans-serif;
*/
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: 'Karla', sans-serif;
min-height: 100vh;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
background-color: aliceblue;
}
.price-grid{
max-width: 700px;
background-color: white;
box-shadow:2px grey;
}
.header{
padding: 30px;
font-size: 13px;
background-color: white;
}
.header h2{
margin-bottom: 20px;
color:hsl(179, 62%, 43%);
}
.a{
margin-bottom: 10px;
font-weight: bolder;
color: hsl(71, 73%, 54%);
font-size: 17px;
}
.b{
color: gray;
margin-bottom: 5px;
}
.g{
color: gray;
}
.content{
display: flex;
margin-top: 0px;
flex-wrap: wrap;
}
.left{
background-color: hsl(179, 62%, 43%);
color: white;
padding:30px;
font-size: 13px;
}
.left h3{
margin-bottom: 20px;
}
.c{
margin-bottom: 10px;
display: flex;
}
.c p{
align-items: center;
display: flex;
justify-content: center;
padding-left: 10px;
}
.left button{
width: 190px;
height: 37px;
margin-top: 20px;
background-color: hsl(71, 73%, 54%);
color: white;
border: 1px hsl(71, 73%, 54%);
border-radius: 8% 8%;
}
.right{
color: white;
background-color: hsl(179, 76%, 45%);
padding: 30px;
padding-right: 47px;
font-size: 13px;
}
.right h3{
margin-bottom: 20px;
}