-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (50 loc) · 997 Bytes
/
style.css
File metadata and controls
60 lines (50 loc) · 997 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
*{
padding: 0;
margin: 0;
}
body{
background: hsl(212, 45%, 89%);
width: 100%;
height: 100%;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 99vh;
width: 100%;
}
.child{
display: flex;
justify-content: space-around;
flex-direction: column;
background-color: white;
width: 18vw;
height: 30vw;
border-radius: 18px;
padding: 0 12px 15px 12px;
}
.qr-code{
border-radius: 18px;
}
h1{
font-family: 'Outfit', sans-serif;
font-size: 1.16em;
text-align: center;
color: hsl(218, 44%, 22%);
}
p{
font-family: 'Outfit', sans-serif;
font-size: 0.87em;
text-align: center;
color: hsl(220, 15%, 55%);
}
@media only screen and (max-width: 500px){
.child{
width: 60vw;
height: 75vh;
}
}
@media only screen and (max-width: 1440px){
}