-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
57 lines (51 loc) · 970 Bytes
/
index.css
File metadata and controls
57 lines (51 loc) · 970 Bytes
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
* {
margin: 0;
box-sizing: border-box;
}
body {
font-size: 15px;
min-width: 375px;
height: 100vh;
background-color: #D5E1EF;
display: flex;
align-items: center;
justify-content: center;
}
.parent-wrapper {
width: 320px;
padding: 16px 16px 40px 16px;
background-color: white;
border-radius: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.qr-code {
width: 288px;
height: 288px;
border-radius: 10px;
}
.text-wrapper {
width: 320px;
padding: 16px 32px 0px 32px;
display: flex;
flex-direction: column;
align-items: center;
}
.title {
line-height: 120%;
font-family: 'Outfit';
color: #1F314F;
font-size: 1.375rem;
font-weight: 700;
}
.content {
letter-spacing: 0.2px;
line-height: 140%;
margin-top: 16px;
text-align: center;
color: #68778D;
font-size: 1rem;
font-family: 'Outfit';
font-weight: 400;
}