-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
53 lines (43 loc) · 1013 Bytes
/
Copy pathStyle.css
File metadata and controls
53 lines (43 loc) · 1013 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
/* Feel free to remove these styles or customise in your own stylesheet 👍*/
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
body{
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: hsl(212, 45%, 89%);
font-family: "Outfit", sans-serif ;
font-Weights: 400, 700;
}
p{
color: hsl(220, 15%, 55%);
font-size: 15px;
}
h1{
color: hsl(218, 44%, 22%);
font-size: 28px;
}
#codeQr{
text-align: center;
width: 25%;
margin: 50px auto;
padding: 15px 15px;
background-color: hsl(0, 0%, 100%);
border-radius: 25px;
}
img{
width: 100%;
display: block;
margin-left: auto;
border-radius: 10px;
}
@media(max-width: 830px){
#codeQr{
text-align: center;
width: 90%;
margin: 50px auto;
padding: 8px 8px;
background-color: hsl(0, 0%, 100%);
border-radius: 15px;
}
}