-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (54 loc) · 954 Bytes
/
Copy pathstyle.css
File metadata and controls
63 lines (54 loc) · 954 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
--white: hsl(0, 0%, 100%);
--slate300: hsl(212, 45%, 89%);
--slate500: hsl(216, 15%, 48%);
--slate900: hsl(218, 44%, 22%);
}
body {
background-color: var(--slate300);
font-family: "Outfit", sans-serif;
}
.container,
.card,
.qrbody,
.qrcode {
display: flex;
align-items: center;
justify-content: center;
}
.container {
margin: auto;
height: 700px;
}
.card {
border: none;
padding: 2px;
flex-direction: column;
background-color: var(--white);
border-radius: 2%;
width: 304px;
}
.card img {
width: 288px;
height: 288px;
border-radius: 2%;
margin-top: 5px;
}
.qrbody {
margin: 10px;
padding: 10px;
flex-direction: column;
}
h2 {
font-size: 18px;
text-align: center;
color: var(--slate900);
}
p {
font-size: 15px;
padding: 0;
margin-top: 0;
text-align: center;
color: var(--slate500);
}