-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
48 lines (42 loc) · 868 Bytes
/
app.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
body {
background-color: hsl(212, 45%, 89%);
display: flex;
justify-content:center;
align-items: center;
min-height:100vh;
}
.qrCard {
border-radius: 25px;
background-color: hsl(0, 0%, 100%);
height: 450px;
width: 285px;
display: block;
}
.qrCode {
border-radius: 25px;
display: block;
margin-left: auto;
margin-right: auto;
height: 250px;
width: 250px;
border-top: 10px solid hsl(0, 0%, 100%);
}
.container {
padding: 10px; /* Add padding around the container */
text-align: center;
max-width: 400px;
}
.header {
font-family: 'Outfit';
text-align: center;
font-weight: 700;
font-size: 22px;
color: hsl(218, 44%, 22%);
}
.body-text {
font-family: 'Outfit';
text-align: center;
font-weight: 400;
font-size: 15px;
color: hsl(220, 15%, 55%);
}