-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (44 loc) · 866 Bytes
/
style.css
File metadata and controls
49 lines (44 loc) · 866 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=Lato&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #dcdde1;
font-family: 'Lato', sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
}
main {
width: 17.5rem;
height: 27.5rem;
border-radius: 1.125rem;
background-color: #fff;
}
.qr-code img {
border-radius: 0.875rem;
width: 90%;
margin: 0.938rem;
margin-right: 0.938rem;
place-items: center;
}
.header {
text-align: center;
}
.header h1 {
font-size: 1.125rem;
margin: 1.25rem;
margin-bottom: 0.938rem;
}
.header p {
align-items: center;
justify-content: center;
font-size: 0.75rem;
font-weight: 600;
margin: 0.75rem;
color:#7d8796 ;
}