-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (62 loc) · 1.22 KB
/
Copy pathstyle.css
File metadata and controls
67 lines (62 loc) · 1.22 KB
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
59
60
61
62
63
64
65
66
67
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
* {
margin: 0;
padding: 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
}
.card {
background-color: white;
padding: 20px;
text-align: center;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
width: 200px;
}
.card h2 {
font-size: 15px;
font-family: 'Outfit';
color: hsl(218, 44%, 22%);
font-weight: 700;
}
.card p {
font-size: 11px;
font-family: 'Outfit';
color: hsl(220, 15%, 55%);
}
.qr-code {
width: 200px;
height: 200px;
border-radius: 4px;
}
img, h2, p {
margin-bottom: 10px;
}
/* Responsive styles */
@media (max-width: 375px) {
.card {
width: 70%;
}
.qr-code {
width: 100%;
height: auto;
border-radius: 4px;
}
.card p {
font-size: 15px;
}
.card h2 {
font-size: 17px;
}
}
@media (min-width: 1440px) {
.card {
width: 400px;
}
}