-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (46 loc) · 700 Bytes
/
style.css
File metadata and controls
56 lines (46 loc) · 700 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
54
55
56
* {
font-family: 'Outfit', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #d6e2f0;
}
#qr-container {
width: 350px;
height: 520px;
background-color: #fff;
border-radius: 20px;
margin-top: 7rem;
margin-left: auto;
margin-right: auto;
}
.qr-code-img {
text-align: center;
}
.qr-code-img img {
width: 100%;
padding: 1rem;
border-radius: 25px;
}
h2 {
text-align: center;
padding: 0 1.3rem;
color: #1f3251;
}
p {
font-size: 15px;
text-align: center;
color: #7b879d;
padding: 1rem 3rem;
}
/*
Media Queries
*/
@media screen and (max-width: 480px) {
#qr-container {
margin-top: 2rem;
width: 93%;
}
}