-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscanning.css
More file actions
75 lines (67 loc) · 1.31 KB
/
scanning.css
File metadata and controls
75 lines (67 loc) · 1.31 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
/* scan-style.css */
body {
margin: 0;
padding: 0;
height: 100vh;
background-image: url("environment-bg.jpg"); /* Replace with your environmental image */
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
font-family: "Roboto", sans-serif;
}
html {
scroll-behavior: smooth;
}
.scan-container {
text-align: center;
background-color: rgba(255, 255, 255, 0.9);
padding: 50px;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
width: 90%;
max-width: 500px;
position: relative;
}
.logo {
width: 350px;
height: 150px;
margin-bottom: 20px;
}
/* Scanning Circle */
.scanning-circle {
width: 150px;
height: 150px;
border-radius: 50%;
border: 5px solid #00c853;
margin: 0 auto;
position: relative;
}
.scanner {
width: 40px;
height: 40px;
background-color: #00c853;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: scanning-animation 2s infinite linear;
}
/* Animation for scanner movement */
@keyframes scanning-animation {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.scanning-status {
margin-top: 20px;
font-size: 18px;
color: #333;
}
#scanning-text {
color: #00796b;
}