-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (51 loc) · 991 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Outfit";
font-size: 15px;
}
body {
background-color: hsl(212, 45%, 89%);
}
.container {
height: 30em;
width: 18.75em;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
perspective: 37.5em;
display: flex;
flex-direction: column;
background-color: #ffffff;
border-radius: 1em;
}
.front-img {
display: block;
margin: auto;
width: 16.75em;
height: 16.75em ;
border-radius: 1em;
margin: 1em ;
background: url(image-qr-code.png);
background-size: cover;
}
#caption{
font-weight: 700;
color:hsl(218, 44%, 22%);
text-align: center;
font-size: 20px;
margin-top: 0%;
padding: 1%;
}
#description{
font-weight: 400;
color:hsl(220, 15%, 55%);
text-align: center;
font-size: 15px;
margin-top: 0%;
}
p{
margin: 5%;
}