-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (83 loc) · 1.71 KB
/
style.css
File metadata and controls
95 lines (83 loc) · 1.71 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.card .img img {
border-radius: 1rem 1rem 0 0;
padding-right: 0.3rem;
}
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: hsl(225, 100%, 94%);
background-image: url("./images/pattern-background-desktop.svg");
background-repeat: no-repeat;
background-size: contain;
}
.main-container {
max-width: 28rem;
padding: 2rem;
gap: 2rem;
background-color: rgb(255, 255, 255);
display: flex;
flex-direction: column;
border-radius: 0 0 1rem 1rem;
text-align: center;
}
.heading {
color:darkblue;
font-size: 1.5rem;
font-weight: 700;
}
.pragraph {
color:rgb(112, 111, 111);
}
.plan {
display: flex;
justify-content: space-between;
align-items: center;
background-color: hsl(225, 100%, 98%);
border-radius: 1rem;
padding: 0.8rem;
}
.plan-info {
display: flex;
flex-direction: column;
margin-right: 8.5rem;
gap: 0.3rem;
}
span {
margin-right: 0.3rem;
font-weight: 300;
color: rgb(112, 111, 111);
}
a {
font-weight: 700;
color:hsl(245, 75%, 52%);
cursor: pointer;
}
.button {
display:flex;
flex-direction: column;
}
.payment {
background-color: hsl(245, 75%, 52%);
color: white;
border: none;
padding: 1rem;
border-radius: 0.6rem;
cursor: pointer;
}
.cancel {
background-color: white;
border: none;
padding: 1rem;
margin-top: 0.2rem;
border-radius: 0.6rem;
font-weight: 700;
cursor: pointer;
}