-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
123 lines (117 loc) · 1.7 KB
/
styles.css
File metadata and controls
123 lines (117 loc) · 1.7 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
116
117
118
119
120
121
122
123
html {
font-family: "Roboto", sans-serif;
}
h1 {
text-align: center;
font-weight: 100;
font-size: 48px;
}
.form {
margin: auto;
}
input[type="text"],
button,
.size {
width: 100%;
margin: 8px auto;
padding: 16px;
border-radius: 15px;
}
#error {
display: none;
color: #b30000;
text-align: center;
}
button {
font-size: larger;
}
.qr-container {
justify-content: center;
text-align: center;
margin: 5% auto;
}
.processing {
text-align: center;
margin: auto;
justify-content: center;
}
#successMessage {
text-align: center;
font-size: 30px;
padding: 8px;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 50px auto;
justify-content: center;
}
.box {
animation: loader 1.25s infinite;
background-color: #fff;
background-image: linear-gradient(
45deg,
#000 25%,
transparent 25%,
transparent 75%,
#000 75%,
#000
),
linear-gradient(
-45deg,
#000 25%,
transparent 25%,
transparent 75%,
#000 75%,
#000
);
background-size: 10px 10px;
background-repeat: repeat;
width: 100px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
@keyframes loader {
0% {
rotate: 0deg;
}
100% {
border-radius: 50%;
rotate: 180deg;
}
}
img {
margin: 50px auto;
}
.copy-button {
width: fit-content;
padding: 16px;
margin: 16px auto;
font-size: larger;
border: 1px solid black;
border-radius: 15px;
}
a {
text-decoration: none;
}
footer {
margin-top: 8px;
left: 0;
bottom: 0;
width: 100%;
padding: 6px;
text-align: center;
}
.copy {
float: left;
}
.socials {
float: right;
margin-right: 6px;
}
i {
padding: 4px;
}