-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (51 loc) · 994 Bytes
/
styles.css
File metadata and controls
53 lines (51 loc) · 994 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
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Outfit', sans-serif;
font-size: 0.9375rem;
background-color: hsl(212, 45%, 89%);
}
.container {
position: relative;
height: 100vh;
display: -ms-grid;
display: grid;
}
.qr-container {
margin: auto;
max-width: 320px;
border-radius: 20px;
overflow: hidden;
background-color: hsl(0, 0%, 100%);
color: hsl(220, 15%, 55%);
line-height: 1.2;
text-align: center;
padding: 1em;
}
.qr-container img {
display: block;
max-width: 288px;
border-radius: 15px;
margin: auto;
width: 100%;
}
.qr-container h1 {
color: hsl(218, 44%, 22%);
font-size: 1.5em;
margin-top: 1.5rem;
line-height: 1.3;
}
.qr-container p {
margin-top: 1em;
padding: 0 1em 1.2em 1em;
}