-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (46 loc) · 985 Bytes
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
body{
background-color: hsl(212, 45%, 89%);
}
.qr-card{
width: 370px;
margin: auto;
padding: 20px;
background-color: hsl(0, 0%, 100%);
border-radius: 20px;
text-align: center;
font-family: 'Outfit', sans-serif;
}
.responsive {
width: 100%;
height: auto;
}
.img-rounded {
border-radius: 15px;
}
.qr-card p{
padding-top: 20px;
padding-bottom: 20px;
font-size: 15px;
width: 73%;
margin: auto;
color: hsl(220, 15%, 55%);
}
.qr-card h1{
font-size: 28px;
padding-top: 20px;
color: hsl(218, 44%, 22%);
width: 98%;
margin: auto;
}
@media only screen and (max-width: 600px) {
.qr-card{
width: 360px;
margin: auto;
padding: 20px;
background-color: hsl(0, 0%, 100%);
border-radius: 20px;
text-align: center;
font-family: 'Outfit', sans-serif;
}
}