-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (120 loc) · 2.54 KB
/
style.css
File metadata and controls
135 lines (120 loc) · 2.54 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
124
125
126
127
128
129
130
131
132
133
134
135
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
background: url('images/bg.png') no-repeat center center / cover;
animation: animateBg 5s linear infinite;
overflow: hidden;
}
@keyframes animateBg {
100% {
filter: hue-rotate(360deg);
}
}
.wrapper {
position: relative;
width: 400px;
padding: 20px;
background: rgba(255, 255, 255, 0.4);
border-radius: 15px;
border: 2px solid rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 2rem;
color: #fff;
text-align: center;
margin-bottom: 20px;
text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
}
.input-group {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
.input-group input {
width: 100%;
padding: 10px 15px;
font-size: 1.1rem;
border: 1px solid rgba(255, 255, 255, 0.5);
background:rgba(100, 132, 237, 0.375);
color: #fff;
border-radius: 5px;
margin-bottom: 15px;
}
input::placeholder {
color: rgba(255, 255, 255, 0.9);
font-size: 1.1rem;
}
button {
width: 100%;
height: 40px;
background: #fff;
border: none;
border-radius: 40px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: rgba(255, 255, 255, 0.8);
}
#qrcode {
display: none;
justify-content: center;
align-items: center;
margin: 20px auto;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 10px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
width: 220px;
height: 220px;
}
#downloadLink {
display: none;
justify-content: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.8);
color: #000;
padding: 10px 20px;
font-size: 1rem;
border-radius: 5px;
text-decoration: none;
text-align: center;
margin-top: 15px;
transition: background-color 0.3s ease;
width: 100%;
}
i {
margin-right: 8px;
}
#downloadLink:hover {
background-color: rgba(255, 255, 255, 0.9);
}
.footer {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
text-align: center;
font-size: 0.9rem;
color: #ffffffff;
background: rgba(0, 0, 0, 0.11);
padding: 10px 0;
backdrop-filter: blur(5px);
margin:0;
}