-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (38 loc) · 719 Bytes
/
style.css
File metadata and controls
47 lines (38 loc) · 719 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
body {
padding: 0;
margin: 0;
background-color: hsl(212, 45%, 89%);
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.qr-card {
width: 20vw;
padding: 20px;
justify-content: center;
background-color: white;
border-radius: 25px;
text-align: center;
font-family: Outfit;
}
.qr-card img {
width: 100%;
border-radius: 25px;
}
.qr-card h2 {
font-weight: 700;
color: hsl(218, 44%, 22%);
}
.qr-card p {
font-size: 15px;
font-weight: 400;
color: hsl(220, 15%, 55%);
padding: 0 20px;
}
@media only screen and (max-width: 600px) {
.qr-card {
width: 80vw;
}
}