-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (70 loc) · 1.39 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
*{
margin: 0;
padding: 0;
/* color:hsl(223, 47%, 23%); */
font-family: 'Red Hat Display', sans-serif;
}
body{
background :hsl(225, 100%, 94%) url(./images/pattern-background-desktop.svg) no-repeat fixed;
background-size: contain;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
/* width: 100vw; */
}
.container{
background-color: white;
/* color:hsl(223, 47%, 23%); */
max-width: 22rem;
width: 100%;
min-height: 14rem;
height: auto;
border-radius: 15px;
padding: 0 0 20px 0;
display: flex;
flex-direction: column;
justify-content: center;
/* font-size: 18px; */
background-image: none;
}
.container img{
max-width: 22rem;
width: 100%;
height: auto;
border-radius: 10px 10px 0 0;
}
h1{
text-align: center;
font-size: 24px;
padding: 10px 0;
}
.heading{
color: hsl(223, 47%, 23%);
}
.text{
color: hsl(224, 23%, 55%);
text-align: center;
}
.box{
display: flex;
justify-content: space-between;
padding: 20px;
}
.box figure{
display: flex;
}
.box img{
width: 40px;
}
.payment{
background-color: hsl(245, 75%, 52%);
color: white;
text-align: center;
border-radius: 10px;
padding: 10px;
margin: 20px;
}
.text2{
margin: 20px;
}