-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqr_code.css
More file actions
70 lines (62 loc) · 1.05 KB
/
qr_code.css
File metadata and controls
70 lines (62 loc) · 1.05 KB
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
body {
background-color: rgb(241, 237, 237);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
img{
width: 95%;
height: 95%;
margin-top: 5px;
align-items: center;
justify-content: center;
border-radius: 10%;
}
.box {
width: 40%;
height: 50%;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: white;
border-radius: 10%;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 15px;
padding: 0px;
}
.qr-code {
padding: 5%;
margin: 5%;
}
.text-container {
margin: 0px;
padding: 0px;
width: 80%
}
p {
font-family: 'Outfit', sans-serif;
font-size: 15px;
}
.title {
margin: 5;
margin-bottom: 0;
padding: 0;
font-size: 22px;
font-weight: 700;
text-align: center;
}
.desc {
margin: 5;
padding: 0;
font-weight: 400;
color: rgb(153, 152, 152);
text-align: center;
}