-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqr-code.css
More file actions
58 lines (50 loc) · 933 Bytes
/
qr-code.css
File metadata and controls
58 lines (50 loc) · 933 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
57
58
* {
margin: 0;
padding: 0;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-decoration: none;
list-style: none;
}
body {
background: hsl(220, 15%, 55%);
}
.img {
width: 270px;
margin-bottom: 20px;
border-radius: 16px;
margin-left: 5px;
margin-right: 5px;
}
h2 {
margin-bottom: 20px;
font-size: 22px;
font-weight: 700;
color: hsl(218, 44%, 22%)
}
p {
margin-bottom: 30px;
font-size: 15px;
font-weight: 400;
color: hsl(220, 15%, 55%);
}
.card {
padding: 10px;
background-color: white;
width: 280px;
margin-right: auto;
margin-left: auto;
margin-top: 80px;
margin-bottom: 100px;
align-items: center;
border-radius: 16px;
text-align: center;
}
footer {
display: flex;
justify-content: center;
padding: 20px 0;
}
footer a {
text-align: center;
color: white;
}