-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (52 loc) · 1.09 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
58
59
60
:root {
--clr-white: hsl(0, 0%, 100%);
--clr-light-gray: hsl(212, 45%, 89%);
--clr-gray-blue: hsl(220, 15%, 55%);
--clr-dark-blue: hsl(218, 44%, 22%);
--fs-p: 1.1rem;
--fs-head: 1.5rem
}
body {
font-family: "Outfit", sans-serif;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
background-color: var(--clr-light-gray);
height: 100vh;
}
.wrapper {
background-color: var(--clr-white);
height: 400px;
width: 300px;
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
padding: 0.5rem;
padding-top: 1rem;
border-radius: 1rem;
padding-bottom: 5rem;
}
.wrapper h1 {
font-size: var(--fs-head);
color: var(--clr-dark-blue);
}
.wrapper p {
font-size: var(--fs-p);
color: var(--clr-gray-blue);
}
.qr-img {
height: 275px;
border-radius: 0.5rem;
}
.attribution {
font-size: 11px;
text-align: center;
margin-top: 2rem;
color: var(--clr-gray-blue);
}
.attribution a {
color: hsl(228, 45%, 44%);
}