-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
48 lines (43 loc) · 774 Bytes
/
index.css
File metadata and controls
48 lines (43 loc) · 774 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
body{
display: flex;
background-color: hsl(212, 45%, 89%);
align-items: center;
justify-content: center;
height: 100vh;
font-family: Outfit, Arial;
font-size: 15px;
}
.qr-card{
background-color: hsl(0, 0%, 100%);
width: 290px;
padding: 18px;
border-radius: 20px;
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.10);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 40px;
}
.qr-code{
width: 100%;
border-radius: 13px;
margin-bottom: 20px;
}
.title{
font-weight: bold;
font-size: 22px;
color: hsl(218, 44%, 22%);
width: 90%;
margin-bottom: 20px;
}
.description{
color: hsl(220, 15%, 55%);
width: 90%;
}
footer{
position: absolute;
bottom: 0;
left: 0;
font-size: 11px;
}