-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (60 loc) · 1.21 KB
/
styles.css
File metadata and controls
61 lines (60 loc) · 1.21 KB
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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
/* entire styles */
:root {
--white: hsl(0, 0%, 100%);
--light-gray: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
font-family: 'Outfit', sans-serif;
}
body {
background-image: url(images/bg.jpg);
background-size: cover;
background-repeat: no-repeat;
/* padding: 1em; */
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* #outer {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#container {
padding: 2.5em;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
background-color: transparent;
box-shadow: -5px 15px 20px rgba(0, 0, 0, 0.055);
} */
#wrapper {
background-color: var(--white);
padding: 20px;
border-radius: 10px;
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.055);
}
.content {
max-width: min-content;
text-align: center;
}
.qr {
width: 250px;
border-radius: 10px;
}
.header {
font-weight: 700;
color: var(--dark-blue);
max-width: 350px;
font-size: 20px;
}
.description {
font-weight: 400;
color: var(--grayish-blue);
font-size: 15px;
}