-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (47 loc) · 1.05 KB
/
styles.css
File metadata and controls
53 lines (47 loc) · 1.05 KB
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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root {
--component-bg-color: white;
--main-bg-color: hsl(212, 45%, 89%);
--text-color: hsl(216, 15%, 48%);
--title-color: hsl(218, 44%, 22%);
}
body {
width: 100vw;
height: 100vh;
box-sizing: border-box;
font-size: 15px;
background-color: var(--main-bg-color);
display: flex;
align-items: center;
justify-content: center;
font-family: 'Outfit', sans-serif;
}
.qr-component {
width: 320px;
height: 500px;
box-sizing: border-box;
background-color: var(--component-bg-color);
border-radius: 20px;
padding: 16px 16px 40px;
text-align: center;
}
img {
width: 288px;
height: 288px;
border-radius: 20px;
}
.title {
font-size: 22px;
color: var(--title-color);
margin-top: 24px;
margin-bottom: 16px;
font-weight: 700;
padding: 0 16px;
line-height: 1.2;
}
.description {
color: var(--text-color);
font-weight: 400;
padding: 0 16px;
line-height: 1.4;
}