-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 955 Bytes
/
style.css
File metadata and controls
56 lines (50 loc) · 955 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
body {
background-color: hsl(212, 63%, 84%);
height: 100dvh;
width: 100dvw;
margin: 0;
}
.conteiner{
display: flex;
margin: 0 auto;
height: 100dvh;
width: min-content;
}
.card {
background-color: hsl(0, 0%, 100%);
width: min-content;
height: max-content;
margin: auto auto;
padding: 2dvh;
border-radius: 15px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
text-align: center;
}
.image {
background-image: url(images/image-qr-code.png);
background-size: contain;
border-radius: 8%;
width: 80dvw;
height:80dvh;
margin: 0 auto;
margin-top: 2dvh;
max-width: 200px;
max-height: 200px;
min-width: 150px;
min-height: 150px
}
.texto {
padding: 1%;
margin: 2%;
}
.texto p {
margin: 0 auto;
width: 90%;
color: rgb(110, 110, 110);
font-size:small;
}
.texto h2 {
font-size: 20px;
margin: 1dvh auto;;
width: 90%;
}