-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (47 loc) · 947 Bytes
/
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
.attribution {
display: flex;
flex-direction: row;
gap: 10px;
color: hsl(0, 0%, 0%);
font-size: 10px;
margin-top: -10px;
}
.attribution a {
color: hsl(218, 44%, 22%);
}
body {
background-color: hsl(212, 45%, 89%);
font-family: 'Roboto', sans-serif;
}
#qr-main {
width: 300px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: hsl(0, 0%, 100%);
padding: 15px;
border-radius: 1.5rem;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
box-shadow: #00000033 0 0 16px 0;
}
#qr-main:hover {
transition: 0.25s;
box-shadow: #00000050 0 0 32px 0;
}
#qr-pitch {
color: hsl(218, 44%, 22%);
font-weight: 700;
}
#qr-direction {
color: hsl(220, 15%, 55%);
font-weight: 400;
}
img {
border-radius: 1.5rem;
width: 300px;
}