-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (95 loc) · 1.84 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
body{
background-color: hsl(225, 100%, 94%);
background-image: url('pattern-background-desktop.svg');
background-size: 100% 100%;
background-attachment: fixed;
background-repeat: no-repeat;
}
.content{
font-family: 'Red Hat Display', sans-serif;
color: hsl(223, 47%, 23%);
background-color:white;
margin-left: 500px;
margin-top: 100px;
border-radius: 10px;
width: 400px;
display:flex;
flex-direction: column;
gap: 5px;
box-shadow: 0px 4px 8px 0px rgb(0, 0, 0, 0.2);
transition: 0.3s;
}
h2{
text-align: center;
font-weight: 900;
}
p{
font-size: 16px;
text-align: center;
}
.hero{
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.proceed-btn{
color: white;
font-weight: 700;
background-color: hsl(245, 75%, 52%);
padding: 10px 20px 10px 20px;
margin-bottom: 10px;
box-shadow: 0px 4px 8px 0px rgb(0, 0, 0, 0.2);
transition: 0.3s;
align-self: center;
border: none;
border-radius: 5px;
width: 300px;
}
.cancel-btn{
font-weight: 700;
color:hsl(223, 47%, 23%) ;
padding: 20px;
border-radius: 5px;
background-color: transparent;
border: none;
width: 300px;
align-self: center;
}
.plan{
background-color: hsl(225, 100%, 98%);
border-radius: 10px;
margin-bottom: 20px;
display:grid;
grid-template-columns: 30% 30% 40%;
margin-left: 50px;
margin-right: 50px;
height: auto;
}
.music-img{
padding: 10px;
}
a{
font-weight: 700;
margin:20px 5px 10px 50px;
}
a:link{
color: hsl(245, 75%, 52%);
}
a:visited{
color: purple;
}
a:hover{
text-decoration: none;
color: blueviolet;
}
a:active{
color: red;
}
.proceed-btn:hover{
cursor: pointer;
background-color:blueviolet;
}
.cancel-btn:hover{
cursor: pointer;
color:black;
font-weight: 900;
}