-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (49 loc) · 1.26 KB
/
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
50
51
52
53
54
55
56
57
@import url('https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap');
@media (min-width: 320px) {
.outfit-regular {
font-family: "Outfit", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
.outfit-heavy {
font-family: "Outfit", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
}
body {
background-color: hsl(212, 45%, 89%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
height: 100vh;
}
#qr-card {
background-color: hsl(0, 0%, 100%);
display: inline-block;
border-radius: 20px;
align-items: center;
justify-content: center;
padding: 1rem;
width: 18rem;
margin-top: 5rem;
box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.054);
}
#qr-img {
width: 18rem;
border-radius: 10px;
}
h1 {
color: hsl(218, 44%, 22%);
margin: 1rem;
font-size: 21px;
}
h2 {
color: hsl(216, 15%, 48%);
font-size: 15px;
margin: 1rem;
}
}