-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 874 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
60
61
62
63
body {
background-color: #d5e1ef;
font-family: 'Montserrat', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 4%;
}
.container-branco {
background-color: #FFFFFF;
width: 25%;
padding: 2%;
max-width: 270px;
border-radius: 10px;
display: flex;
flex-direction: column;
}
.qr-code {
width: 100%;
border-radius: 10px;
}
h1 {
font-weight: 700;
font-size: 1.2rem;
}
.texto {
text-align: center;
}
.texto p {
font-weight: 400;
font-size: 0.9rem;
}
footer {
margin-top: 5%;
font-size: 10px;
color: #5c5464;
}
footer a {
color: #5c5464;
font-weight: bold;
}
footer a:hover {
color: #774ea0;
}
footer a:active {
color: #a495b3;
}
@media (max-width: 720px) {
.container-branco {
width: 80%;
padding: 1rem;
}
}