-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
113 lines (107 loc) · 2.22 KB
/
styles.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
*{
margin: 0px;
padding:0px;
}
body{
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Red Hat Display', sans-serif;
background-image: url("pattern-background-desktop.svg");
background-repeat:repeat-x;
}
.container{
background-color:hsl(225, 100%, 98%);
width: 350px;
height: 500px;
border-radius: 15px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap:1rem;
box-shadow: 1px 12px 5px rgba(197, 193, 213, 0.77);
}
.container img{
width: 350px;
border-radius: 15px 15px 0 0;
}
.container h1{
margin-top: 0.8rem;
font-weight: 900;
font-size: 22px;
color:hsl(223, 47%, 23%)
}
.container-descrition{
width: 260px;
font-size:14px;
color: hsl(224, 23%, 55%);
line-height: 1.5;
}
.container-pay{
background-color: rgb(243, 240, 254);
display:flex;
justify-content: space-around;
align-items: center;
padding: 1rem;
width: 260px;
border-radius:15px;
}
.container-pay img{
width: 40px;
border-radius: 50px;
}
.container-pay h3{
font-size: 13px;
font-weight: 900;
text-align: start;
}
.container-pay p{
font-size: 13px;
color: hsl(224, 23%, 55%);
}
.container-pay a{
font-size: 11px;
font-weight: 700;
}
.container-pay div{
margin-right:3rem;
}
.buttom-payment{
background-color: hsl(245, 75%, 52%);
color:white;
width: 240px;
height: 32px;
border-radius:10px;
border: none;
box-shadow: 1px 7px 5px rgba(197, 193, 213, 0.77);
font-size: 11px;
font-weight: 700;
}
.buttom-cancel{
border: none;
color: hsl(224, 23%, 55%);
font-weight: 700;
font-size: 11px;
background: none;
}
footer{
margin-top: 2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
footer section{
margin: 1rem;
}
@media (max-width: 600px){
body{
background-image: url("pattern-background-mobile.svg");
background-size: 2000px;
}
}