-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (100 loc) · 1.97 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
99
100
101
102
103
104
105
106
107
108
109
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Red Hat Display', sans-serif;
min-height: 100vh;
background-image: url(images/pattern-background-desktop.svg);
background-repeat: no-repeat ;
background-size: contain;
background-color: hsl(225, 100%, 98%);
position: relative;
font-size: 16px;
}
.picture{
min-width: 100%;
}
button{
font-family: 'Red Hat Display', serif-serif;
}
.container{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
max-width: 450px;
background-color: #fff;
border-radius: 20px;
overflow: hidden;
}
.card{
background-color: #fff;
box-shadow: 3px 3px 30px hsl(228, 45%, 44%, 0.15);
}
.text-content{
padding: 50px;
text-align: center;
}
h1{
color:hsl(223, 47%, 23%);
font-weight: 900;
font-size: 32px;
margin-bottom: 20px;
}
.decription{
color: hsl(224, 23%, 55%);
margin-bottom: 30px;
}
.plan{
background-color: hsl(225, 100%, 98%);
border-radius: 12px;
padding: 25px;
display: flex;
justify-content: space-between;
align-items: center;
}
.plan-left{
display: flex;
text-align: left;
}
.plan-left div{
margin-left: 20px;
}
.plan-left div span{
font-weight: 900;
color:hsl(223, 47%, 23%);
}
.plan-left div p{
color:hsl(224, 23%, 55%);
}
.button-change{
color:hsl(245, 75%, 52%);
font-weight: 900;
}
.button-change:hover{
opacity: 0.7;
text-decoration: none;
}
.buttons a{
text-decoration: none;
font-weight: 700;
}
.button-payment{
display: block;
color: #fff;
background-color:hsl(245, 75%, 52%);
padding: 20px 0;
border-radius: 12px;
margin: 30px 0;
}
.button-payment:hover{
opacity: 0.7;
}
.button-cancel{
color: hsl(224, 23%, 55%);
}
.button-cancel:hover{
color: hsl(223, 47%, 23%);
}