-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (66 loc) · 1.36 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:[email protected]&display=swap');
body {
font-family: 'Afacad Flux', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #EEEEEE;
}
.qr-card {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qr-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.qr-card h1 {
margin-bottom: 20px;
color: #333;
animation: fadeIn 0.5s ease forwards;
}
.qr-card input {
padding: 10px;
border-radius: 5px;
border: 1px solid #BC8CF2;
width: 80%;
transition: border-color 0.3s ease;
}
.qr-card input:focus {
border-color: #333;
outline: none;
}
#qrcode {
display: none;
width: 128px;
height: 128px;
margin-left: 60px;
margin-top: 20px;
transition: opacity 0.5s ease;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px 0;
background-color: #333;
color: white;
font-size: 14px;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}