-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (43 loc) · 888 Bytes
/
style.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
49
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(212, 45%, 89%);
}
.qr-code-card-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.qr-code-card {
background-color: white;
border-radius: 20px;
text-align: center;
max-width: 320px;
padding: 16px;
padding-bottom: 40px;
font-family: "Outfit", sans-serif;
box-shadow: 0px 25px 25px rgba(0, 0, 0, 4.77%);
}
.qr-code-card img {
border-radius: 10px;
width: 100%;
}
.qr-code-card h1 {
color: hsl(218, 44%, 22%);
font-weight: 700;
padding: 24px 16px 16px;
font-size: 1.375rem;
line-height: 120%;
}
.qr-code-card p {
color: hsl(216, 15%, 48%);
font-weight: 400;
padding: 0px 16px;
font-size: 0.9375rem;
line-height: 140%;
letter-spacing: 0.0125rem;
}