-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
47 lines (39 loc) · 776 Bytes
/
index.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
* {
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
background-color: hsl(212, 45%, 89%);
font-size: 15px;
}
.qrcode-box {
max-width: 100%;
margin: 0 auto;
background-color: hsl(0, 0%, 100%);
overflow: hidden;
text-align: center;
width: 360px;
border-radius: 20px;
}
.qrcode {
background: url('./images/image-qr-code.png') no-repeat center center/cover;
width: 320px;
height: 320px;
margin: 20px 20px 0px 20px;
border-radius: 10px;
}
.qrcode-box h1 {
width: 90%;
font-size: 20px;
padding: 20px;
margin: 0 auto;
}
.qrcode-box p {
width: 80%;
margin: 0px auto 40px auto;
}