-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (51 loc) · 1.03 KB
/
Copy pathstyle.css
File metadata and controls
58 lines (51 loc) · 1.03 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
:root{
/* colores */
--light-gray: hsl(212, 45%, 89%);
--grayish-blue: hsl(220, 15%, 55%);
--dark-blue: hsl(218, 44%, 22%);
--just-white: #fff;
/* font */
--font-family: 'Outfit', sans-serif;
}
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
font-family: var(--font-family);
font-size: 0.938rem;
}
.main-container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: var(--light-gray);
}
.qr-card{
width: 300px;
height: 475px;
background-color: white;
color: var(--desaturated-blue);
border-radius: 15px ;
margin: auto;
}
img{
width: 270px;
height: 275px;
margin: 15px;
border-radius: 10px ;
}
.qr-card__info{
margin: 5px 15px;
text-align: center;
}
.qr-card__info h2{
color: var(--dark-blue);
margin-bottom: 15px;
}
.qr-card__info p{
color: var(--grayish-blue);
}