-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (91 loc) · 1.68 KB
/
style.css
File metadata and controls
107 lines (91 loc) · 1.68 KB
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
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');
*{
box-sizing: border-box;
}
body{
font-family:Karla;
font-size:16px;
font-weight:400;
color:hsl(218, 22%, 67%);
margin: 0;
padding: 0;
background-color: hsl(204, 43%, 93%);
}
b{
font-weight:700;
}
h2{
color: hsl(179, 62%, 43%);
padding-bottom:15px;
}
h3{
color:hsl(71, 73%, 54%);
line-height: 1em;
}
.component{
width:50%;
margin:7% 25% 5% 25%;
}
.box--one {
width:100%;
background-color: #fff;
padding:35px;
line-height: 0.9em;
border-radius:5px 5px 0px 0px;
}
.compb {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.box--two {
background-color: hsl(179, 62%, 43%);
padding:30px;
color:#fff;
border-radius:0px 0px 0px 5px;
}
.box--three {
background-color:#4ABEBD;
padding:30px;
color:#fff;
border-radius:0px 0px 5px 0px;
}
.box--three ul{
list-style:none;
padding:0;
color: rgb(255,255,255,0.5);
}
.price {
line-height: 1.8em;
color: #94D8D7;
font-size:14px;
}
.price--two{
line-height: normal;
font-size:2em;
display: inline-block;
vertical-align: middle;
color:#fff;
}
.signup {
margin-top:20px;
align:center;
width:100%;
display: inline-block;
padding:15px;
background-color: hsl(71, 73%, 54%);
border:none;
font-family:Karla;
font-size:16px;
color:#fff;
border-radius:5px;
box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
}
@media all and (max-width: 375px) {
.container {
max-width:90%;
margin:auto;
}
.compb{
display:grid;
grid-template-columns:1fr;
}