-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 922 Bytes
/
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
body {
margin: 0;
font-family: 'Outfit', sans-serif;
background-color: hsl(212, 45%, 89%);
display: flex;
margin: auto;
min-height: 800px;
}
main {
display: flex;
flex-direction: column;
background-color: hsl(0, 0%, 100%);
width: 380px;
border-radius: 12px;
margin: auto;
margin-top: 80px;
box-shadow: 0px -1px 62px -12px rgba(0,0,0,0.75);
}
main div.qr {
display: flex;
justify-content: center;
padding: 20px;
margin-bottom: 5px;
}
main div img {
width: 340px;
height: auto;
border-radius: 12px;
}
main div.info {
padding: 0 20px 20px 20px;
}
main div.info h2 {
margin: 0;
text-align: center;
font-size: 28px;
color: hsl(218, 44%, 22%);
line-height: 35px;
}
main div.info p {
text-align: center;
color: hsl(220, 15%, 55%);
padding-top: 8px;
}