-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (58 loc) · 1.21 KB
/
Copy pathstyle.css
File metadata and controls
61 lines (58 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@100..900&display=swap');
:root{
--Slate300: hsl(212, 45%, 89%);
--Slate500: hsl(216, 15%, 48%);
--Slate900: hsl(218, 44%, 22%);
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: "Outfit", sans-serif;
background-color: var(--Slate500);
}
.container{
background-color: var(--Slate300);
width: 320px;
height: 500px;
margin: 100px auto;
border-radius: 12px;
text-align: center;
box-shadow: 4px 4px rgba(73, 68, 68, 0.445);
}
.image{
width: 285px;
height: 285px;
margin: 0 auto;
position: relative;
top: 15px;
background-image: url(image-qr-code.png);
background-size: cover;
border-radius: 12px;
}
h1{
font-weight: 700;
margin: 35px 33px 25px 33px;
font-size: 1.4rem;
color: var(--Slate900);
}
p{
font-size: 15px;
line-height: 20px;
color: var(--Slate500);
font-weight: 400;
margin: 0 33px 0 33px;
}
/*------footer------*/
.attribution {
font-size: 11px;
text-align: center;
margin-bottom: 50px;
}
.attribution a {
color: hsl(228, 45%, 44%);
text-decoration: none;
color: var(--Slate900);
}