-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
96 lines (85 loc) · 1.9 KB
/
styles.css
File metadata and controls
96 lines (85 loc) · 1.9 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
/* Background */
body {
font-family: "Segoe UI", sans-serif;
background: linear-gradient(135deg, #1e3c72, #2a5298, #1e3c72);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
/* Animated Gradient Background */
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Container */
.container {
padding: 20px;
}
/* Card (Glassmorphism Style) */
.card {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border-radius: 20px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
padding: 40px;
text-align: center;
width: 100%;
max-width: 420px;
animation: fadeIn 1s ease;
}
/* Fade-in animation */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Text Elements */
h1 {
color: #ffffff;
margin-bottom: 20px;
}
label {
color: #e0e0e0;
font-size: 1rem;
display: block;
margin-bottom: 8px;
}
/* Input Style */
input {
width: 100%;
padding: 12px;
border: none;
border-radius: 10px;
font-size: 1rem;
margin: 10px 0;
outline: none;
transition: box-shadow 0.3s;
}
input:focus {
box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
/* Button Style */
button {
background-color: #00c6ff;
background-image: linear-gradient(90deg, #0072ff, #00c6ff);
color: white;
padding: 12px 20px;
font-size: 1rem;
border: none;
border-radius: 12px;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
}
button:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 198, 255, 0.5);
}
/* QR Code Output */
#qrcode {
margin-top: 25px;
}