-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqrStyle.css
More file actions
53 lines (47 loc) · 874 Bytes
/
qrStyle.css
File metadata and controls
53 lines (47 loc) · 874 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
body{
margin: 0;
padding: 0;
min-height: 100vh;
font-family: 'Outfit', sans-serif;
background-color: hsl(212, 45%, 89%);
}
footer{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
.container{
display: flex;
flex-direction: column;
width: 100%;
min-height: 100vh;
}
.qrWindow{
width: 280px;
margin: auto;
padding: 0.9em;
background-color: white;
border-radius: 1em;
box-shadow: 2px 4px 4px rgb(208, 209, 215, 0.5);
}
.qrWindowImg{
width: 100%;
border-radius: 0.5em;
}
.qrWindowHeading{
margin: 1em 0;
text-align: center;
padding: 0 0.5em;
font-size: 20px;
font-weight: 700;
color: rgb(61, 58, 73);
}
.qrWindowDesc{
margin: 1em 0;
text-align: center;
padding: 0 0.5em;
font-size: 15px;
font-weight: 400px;
color: hsl(220, 15%, 55%);
}