-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (110 loc) · 2.1 KB
/
style.css
File metadata and controls
112 lines (110 loc) · 2.1 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap");
body {
background-image: url("images/pattern-background-desktop.svg");
background-size: 100vw 50vh;
background-repeat: no-repeat !important;
width: 100%;
}
#bootstrap-override {
background-color: hsl(225, 100%, 94%);
}
.flexbox-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.card {
height: 80vh;
width: 430px;
border-radius: 30px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
background-color: white;
}
.flex-item {
background-color: white;
min-height: 150px;
width: 430px;
}
.img {
/* color: red; */
background-image: url("images/illustration-hero.svg");
height: 220px;
border-top-left-radius: 30px;
border-top-right-radius: 30px;
}
.title,
.summary {
font-family: "Red Hat Display";
text-align: center;
margin-right: 50px;
margin-left: 50px;
color: rgb(58, 58, 58);
}
.summary {
margin-top: 10px;
font-size: 16px;
}
.title {
margin-top: 30px;
font-weight: bold;
font-size: 36px;
color: hsl(223, 47%, 23%);
}
.price {
margin-top: 20px;
display: flex;
justify-content: space-around;
align-items: center;
width: 350px;
height: 75px;
border-radius: 10px;
background-color: hsl(225, 100%, 98%);
}
.inner-text,
.change {
font-family: "Red Hat Display";
}
.music-icon {
min-width: 150px;
display: flex;
justify-content: space-between;
}
.item-1 {
font-weight: bold;
color: hsl(223, 47%, 23%);
}
.item-2 {
color: grey;
}
.payment {
background-color: hsl(245, 75%, 52%);
width: 350px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
font-family: "Red Hat Display";
border-radius: 10px;
font-weight: bold;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
margin-top: 40px;
}
.payment a {
text-decoration: none;
color: white;
}
.cancel {
font-family: "Red Hat Display";
font-weight: bold;
color: darkgray;
margin-top: 20px;
}
.cancel a {
color: darkgray;
text-decoration: none;
}