-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (38 loc) · 733 Bytes
/
style.css
File metadata and controls
46 lines (38 loc) · 733 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;800&display=swap');
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Outfit', sans-serif;
background-color: hsla(201, 24%, 55%, 0.324);
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
font-size: 15px;
}
.qrc{
max-width: 315px;
}
.qr img{
width: 100%;
border-radius: 14px;
}
.qr{
background-color: hsl(0, 0%, 100%);
padding: 20px;
border-radius: 19px;
}
.content{
padding: (20px,10px);
padding-left: 8px;
padding-top: 8px;
}
.content h2{
color: hsl(218, 44%, 22%);
}
.content p{
padding-top: 15px;
color: hsl(220, 15%, 55%);
}