-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 987 Bytes
/
style.css
File metadata and controls
62 lines (54 loc) · 987 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
59
60
61
62
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
body {
margin: 0;
display: flex;
flex-direction: column;
background: rgb(211, 224, 241);
align-items: center;
justify-content: center;
height: 100vh;
}
.attribution {
font-size: 11px;
text-align: center;
display: flex;
justify-self: end;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
#card {
width: 275px;
height: 430px;
display: flex;
flex-direction: column;
background: white;
justify-content: start;
border-radius: 15px;
align-items: center;
}
#qrcode {
height: 250px;
width: 250px;
border-radius: 15px;
margin-top: 10px;
margin-bottom: 15px;
}
span {
display: flex;
text-align: center;
width: 250px;
}
#tagline {
font-family: Outfit;
font-weight: 700;
font-size: 18px;
color: hsl(218, 44%, 22%);
}
.text {
margin-top: 10px;
font-family: Outfit;
font-size: 15px;
font-weight: 400;
color: hsl(220, 15%, 55%);
}