-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
110 lines (109 loc) · 1.94 KB
/
styles.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
body {
background-color: hsl(225, 100%, 94%);
position: relative;
font-family: "Red Hat Display", sans-serif;
}
container {
/* background-color: hsl(225, 100%, 98%); */
background-color: white;
margin: 50px;
padding: 200px 50px 50px;
border-radius: 5%;
position: relative;
}
p{
color: hsl(224, 23%, 55%);
}
h2 {
padding-top: 15px;
}
.para{
margin: 10px 0;
}
.img {
width: 100%;
height: 40%;
}
.icon {
width: 50px;
height: 50px;
}
.hero {
width: 400px;
position: absolute;
right: 0px;
top: 0px;
object-fit: cover;
border-radius: 5% 5% 0 0;
}
.cont {
text-align: center;
width: 300px;
position: absolute;
right: 35%;
top: 10px;
}
.plan {
margin: 16px 0;
display: flex;
justify-content: space-around;
padding: 10px;
align-items: center;
background-color:hsl(225, 100%, 98%);
text-align: left;
border-radius: 5%;
transition: all .2s;
}
.annual{
font-weight: bold;
font-size: 20px;
}
.plan_flex {
margin-right: 20px;
}
.btn{
display: block;
background-color: hsl(245, 75%, 52%);
width: 100%;
text-align: center;
color: #fff;
padding: 10px;
margin: 10px 0 0;
border-radius: 10px;
cursor: pointer;
font-size: 16px;
letter-spacing: 0px;
line-height: 2;
transition: all .2s;
box-shadow: 3px 10px 5px hsl(225, 100%, 94%) ;
}
.btn:active{
background-color: #9b6dff;
transform: translateY(-10%);
box-shadow: 0 8px 6px -6px rgba(0,0,0,0.7);
}
.change{
color: hsl(245, 75%, 52%) ;
}
.change:active{
transform: translateY(-5%);
color: #9b6dff;
text-decoration: none;
}
.cancel{
text-decoration: none;
color: hsl(224, 23%, 55%);
transition: all .2s;
}
.cancel:active{
color: black;
transform: translateY(-10px);
}
@media (max-width:375px){
.cont{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}