-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
103 lines (88 loc) · 1.63 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
body{
background-color:#e0e8ff;
}
.container{
display:flex;
background-image: url('img/images/pattern-background-desktop.svg');
background-repeat: no-repeat;
background-size: contain;
height: auto;
width: 100%;
margin: 0px;
padding:0px;
align-items: center;
justify-content: center;
}
.box{
border:1px groove;
border-radius:20px;
padding-bottom:80px;
padding-top:0px;
margin:130px;
position: inherit;
width: auto;
align-self: center;
background-color: white;
}
.box img{
border-radius: 20px 20px 0px 0px;
}
.content h1{
text-align: center;
padding: 20px;
font-family: 'Red Hat Display';
}
.content p{
justify-items: center;
align-items: center;
text-align: center;
color: gray;
font-size: 16px;
}
.pricing{
display:flex;
justify-content: space-between;
background-color:hsl(225, 100%, 98%);
padding:20px;
margin: 30px;
border-radius: 20px;}
.img{
border-radius:100px;
height: 35px;
width: 45px;
margin: 10px;
padding:20px;
/* background-color: plum; */
color:purple;
}
.music_note{
align-self: center;
}
.pricing a{
text-align: center;
}
.action{
display: flex;
align-items: center;
justify-content: center;
}
.change{
align-self: center;
}
button{
background-color: hsl(245, 75%, 52%);
color:white;
padding: 30px;
width: 80%;
margin:10px;
border-radius: 20px;
font-size: 16px;
font-family:'Red Hat Display'
}
.cancel{
display: flex;
align-items:center;
justify-content: center;
padding-top: 10px;
}
a { text-decoration: none; }