-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (41 loc) · 813 Bytes
/
style.css
File metadata and controls
49 lines (41 loc) · 813 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: hsl(212, 45%, 89%);
}
.container{
background-color: #fff;
width: 250px;
padding: 10px 10px;
position: relative;
border-radius: 12px;
}
.image-qr{
width: 100%;
}
.image-qr img{
width: 100%;
height: 250px;
border-radius: 12px;
transition: all 2s;
}
.note{
margin: 1px 8px;
}
.p1{
text-align: center;
font-family:"Outfit",sans-serif;
font-weight: 700;
margin-bottom: 8px;
font-size: 1.2rem;
}
.p2{
font-size: 14px;
text-align: center;
font-family:"Outfit",sans-serif;
font-weight: 400;
color:hsl(220, 15%, 55%);
}