-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
55 lines (47 loc) · 911 Bytes
/
styles.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
53
54
55
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
font-family: 'Outfit', sans-serif;
margin: 0px;
padding: 0px;
}
.flex {
display: flex;
}
.qr-card {
padding-top: 18px;
padding-left: 5px;
padding-right: 5px;
background-color: white;
border-radius: 15px;
flex-direction: column;
align-items: center;
max-width: 280px;
}
img {
height: auto;
width: 250px;
border-radius: 15px;
}
body {
background-color: hsl(212, 45%, 89%);
display: flex;
justify-content: center;
}
.title {
padding-top: 25px;
font-weight: bold;
font-size: 22px;
color: hsl(218, 44%, 22%);
word-spacing: 1px;
}
.content {
padding-top: 25px;
padding-bottom: 35px;
padding-left: 15px;
padding-right: 15px;
color: hsl(220, 15%, 55%);
font-size: 15px;
}
p {
text-align: center;
}