-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (106 loc) · 2.2 KB
/
style.css
File metadata and controls
113 lines (106 loc) · 2.2 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
113
:root {
--paleBlue: hsl(225, 100%, 94%);
--brightBlue: hsl(245, 75%, 52%);
--veryPaleBlue: hsl(225, 100%, 98%);
--desaturatedBlue: hsl(224, 23%, 55%);
--darkBlue: hsl(223, 47%, 23%);
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url('./images/pattern-background-desktop.svg');
background-repeat: no-repeat;
background-size:100%;
display: flex;
height: 100vh;
width: 100%;
align-items: center;
justify-content: center;
background-color: var(--paleBlue);
font-family: 'Red Hat Display' , sans-serif;
}
.card{
background-color: var(--veryPaleBlue);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
width: 400px;
height: 85vh;
box-shadow:var(--darkBlue);
border-radius: 1.2rem;
}
section img {
width: 100%;
border-radius: 0.8em 0.8em 0 0;
margin-top:-4px;
}
.contain3{
display:flex;
flex-direction: column;
justify-content:space-around;
text-align: center;
flex-grow: 1;
margin-left:3rem;
margin-right:3rem;
}
.textInfo{
width:100%
}
.textInfo h1{
margin-top:0.6rem;
font-weight:900;
font-family: 'Overpass' sans-serif;
}
.textInfo p{
color: var(--desaturatedBlue);
margin-top:0.6rem;
}
.price{
margin-top: 0.2rem;
display: flex;
justify-content: space-around;
align-items: center;
background-color: var(--paleBlue);
height:6rem;
border-radius: 0.8rem;
}
.gp1{
display: flex;
}
.musicIcon{
width: 48px;
height: 48px;
}
.priceDetail{
margin-left:1rem;
}
.botoes{
display: flex;
flex-direction:column;
gap:1.5rem;
margin-bottom:1.5rem;
}
.btn{
background-color: var(--brightBlue);
color: #ffffff;
box-shadow:0 0.8rem 1.2rem 0 hsla(245, 75%, 52%, .25);
opacity:1;
height: 4rem;
border-radius:0.8rem;
}
.btn:hover{
opacity:0.8;
transition: all .2s ease;
}
.botoes a{
background-color:var(--veryPaleBlue);
}
.attribution{
display: none;
}
@media screen(max-width:375px){
}