-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (76 loc) · 1.43 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
==================================================
HTML
==================================================
*/
html {
font-family: 'Outfit', sans-serif;
font-size: 62.5%;
}
/*
==================================================
Body
==================================================
*/
body {
background-color: rgb(214, 226, 240);
margin: 0;
padding: 0;
box-sizing: border-box;
}
/*
==================================================
Header
==================================================
*/
/*
==================================================
Main
==================================================
*/
main {
height: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* QR Card */
.qrCard {
background-color: rgb(255, 255, 255);
width: 30rem;
border-radius: 1.5rem;
padding: 1.5rem;
}
.qrImage {
width: 100%;
border-radius: 1rem;
}
.heading, .description {
text-align: center;
}
.heading {
color: rgb(31, 50, 81);
font-size: 2.5rem;
}
.description {
color: rgb(123, 135, 157);
font-size: 1.8rem;
}
/*
==================================================
Footer
==================================================
*/
footer {
margin: 5rem auto 2rem auto;
}
/* Attribution */
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}