-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
119 lines (102 loc) · 1.99 KB
/
main.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
111
112
113
114
115
116
117
118
119
:root {
--Pale: hsl(225, 100%, 94%);
--Bright: hsl(245, 75%, 52%);
--Very : hsl(225, 100%, 98%);
--Desaturated: hsl(224, 23%, 55%);
--Dark: hsl(223, 47%, 23%);
}
* {
font-family: 'Red Hat Display';
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
font-size: 16px;
background-image: url(./images/pattern-background-desktop.svg);
background-color: var(--Pale);
background-repeat: no-repeat;
background-size: contain;
}
.container {
width: 450px;
border-radius: 15px;
background-color: #ffffff;
overflow: hidden;
}
.illustration-hero-image {
height: 220px;
background-image: url("./images/illustration-hero.svg");
}
.main {
text-align: center;
padding: 30px 30px 30px 30px;
}
.header h1 {
font-weight: 900;
padding-bottom: 20px;
}
.content1 {
color: var(--Desaturated);
padding: 0px 35px 20px;
}
.Annual-Plan {
display: flex;
align-items: center;
justify-content: space-between;
padding:20px;
margin-bottom: 20px;
border-radius: 10px;
background-color: var(--Very);
}
.icon {
width: 48px;
height: 48px;
background-image: url("./images/icon-music.svg");
}
.content2 {
padding-right: 100px;
}
.content2 p:first-child {
font-weight: 900;
margin-bottom: 10px;
}
.content2 p:last-child {
color: var(--Desaturated);
}
.Annual-Plan a:hover {
color:#8a2be2;
}
.btn button:first-child {
width: 100%;
padding: 15px;
margin-bottom: 20px;
font-weight: 900;
color: var(--Pale);
cursor:pointer;
border: transparent;
border-radius: 10px;
background-color: var(--Bright);
box-shadow: 1px 10px 10px 5px;
}
.btn button:last-child {
width: 100%;
padding: 15px;
margin-bottom: 10px;
font-weight: 900;
color: var(--Desaturated);
cursor: pointer;
border: transparent;
border-radius: 10px;
background-color: #ffffff;
}
.btn button:first-child:hover{
background-color: #6c6ce0;
}
.btn button:last-child:hover{
color:black;
}