-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (114 loc) · 2.14 KB
/
style.css
File metadata and controls
115 lines (114 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
background-color: #d5e1ef;
display: grid;
font-family: "Outfit", sans-serif;
grid-template-areas: auto auto auto auto auto auto auto auto;
margin: 0;
padding: 0;
align-items: center;
justify-content: center;
align-content: center;
margin: 5%;
}
.grid-container {
width: 400px;
height: 600px;
border-radius: 10px;
display: grid;
background-color: hsl(0, 0%, 100%);
align-content: center;
justify-items: center;
grid-template-areas: auto auto auto auto auto auto auto auto;
}
.qr-pic {
width: 350px;
height: 350px;
border-radius: 10px;
background-color: #2b7dfa;
display: grid;
text-align: center;
justify-content: center;
align-content: center;
}
.qr-pic img {
width: 345px;
height: 345px;
}
.infopara {
margin-top: 10px;
align-items: center;
text-align: center;
width: 350px;
}
.info-para {
font-family: inherit;
font-size: 25px;
font-weight: 700;
}
.scan-para {
width: 350px;
}
.scan-p {
font-family: inherit;
font-weight: 400;
font-size: 15px;
color: hsl(220, 15%, 55%);
text-align: center;
}
.attribution {
font-size: 11px;
text-align: center;
margin-bottom: 10px;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
@media (max-width: 400px) {
.grid-container {
width: 200px;
height: 400px;
border-radius: 10px;
display: grid;
background-color: hsl(0, 0%, 100%);
align-content: center;
justify-items: center;
justify-content: center;
grid-template-areas: auto auto auto auto auto auto auto auto;
margin-top: 50%;
}
.qr-pic {
width: 150px;
height: 150px;
border-radius: 10px;
background-color: #2b7dfa;
display: grid;
text-align: center;
justify-content: center;
align-content: center;
}
.qr-pic img {
width: 145px;
height: 145px;
}
.infopara {
margin-top: 10px;
align-items: center;
text-align: center;
width: 150px;
}
.info-para {
font-family: inherit;
font-size: 15px;
font-weight: 700;
}
.scan-para {
width: 150px;
}
.scan-p {
font-family: inherit;
font-weight: 400;
font-size: 10px;
color: hsl(220, 15%, 55%);
text-align: center;
}
}