-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
66 lines (60 loc) · 1.12 KB
/
main.css
File metadata and controls
66 lines (60 loc) · 1.12 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
62
63
64
65
66
:root{
--white: hsl(0, 0%, 100%);
--lightGray: hsl(212, 45%, 89%);
--grayishBlue: hsl(220, 15%, 55%);
--darkBlue: hsl(218, 44%, 22%);
}
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
.attribution {
visibility: hidden;
}
body {
background-color: var(--lightGray);
height: 100vh;
display: grid;
place-items: center;
margin:0;
}
#box {
-webkit-box-shadow: 0px 11px 72px -16px rgba(183, 183, 200, 1);
-moz-box-shadow: 0px 11px 72px -16px rgba(183, 183, 200, 1);
box-shadow: 0px 11px 72px -16px rgba(183, 183, 200, 1);
background: white;
border-radius: 15px;
height: 480px;
width: 320px;
position: fixed;
}
#qrcode {
position: relative;
margin-top: 15px;
margin-left: 0%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, 0%);
border-radius: 10px;
width: 290px;
height: 290px;
}
p {
font-family: Outfit;
font-size: 15px;
text-align: center;
}
#minor {
font-weight: 400;
color: var(--grayishBlue)
}
#major {
font-weight: 700;
font-size: 20px;
color: var(--darkBlue);
font-family: Outfit;
text-align: center;
}