-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
218 lines (184 loc) · 4.99 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f9f9f9;
}
/* Add styles for the top bar */
.top-bar {
background-color: #1db894c4;
color: #fff;
padding: 60px;
text-align: center;
}
/* Add styles for the logo image */
.logo {
position: absolute;
top: 0px;
left: 10px;
width: 320px;
height: 110px;
/* background-color: gray; */
border-radius: 10%;
}
.machine {
display: flex;
align-items: center;
margin-bottom: 30px;
background-color: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
animation: fadeIn 1.6s ease-in-out;
}
.machine:hover {
box-shadow: 0 0 20px #1db894c4;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateX(-200px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.light {
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 20px;
/* background-color: gray; */
background-image: "Images/WM_Closed.png";
}
.green {
background-color: green;
}
.red {
background-color: red;
}
.yellow {
background-color: yellow;
}
.title {
text-align: center;
font-size: 40px;
margin-bottom: 40px;
color: #333;
}
.container {
display: flex;
justify-content: center;
margin-top: 40px;
}
.column {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 15px;
}
/* Styles for the menu icon and menu */
.menu-icon {
position: fixed;
top: 20px;
right: 20px;
width: 30px;
height: 20px;
cursor: pointer;
z-index: 9999;
}
.menu-icon span {
display: block;
width: 30px;
height: 4px;
background-color: #333;
margin: 6px 0;
transition: transform 0.3s ease-in-out;
}
.menu-icon.open span:nth-child(1) {
transform: translateY(9.5px) rotate(-45deg);
}
.menu-icon.open span:nth-child(2) {
opacity: 0;
}
.menu-icon.open span:nth-child(3) {
transform: translateY(-9.5px) rotate(45deg);
}
.menu {
position: fixed;
top: 0;
right: 0;
width: 200px;
height: 100vh;
background-color: #f1f1f1;
transform: translateX(300px);
transition: transform 0.3s ease-in-out;
z-index: 9998;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 0 0 10px 0;
}
.menu.open {
transform: translateX(0);
}
.menu ul {
list-style: none;
padding: 0;
margin: 20px;
}
.menu ul li:hover{
box-shadow: 0 0px 20px #333;
}
.menu ul li {
margin-bottom: 15px;
}
.menu ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
font-size: 16px;
}
.opan {
width: 50px;
height: 50px;
background: url('/Images/WM_Open.png') no-repeat center center;
background-size: contain;
}
.close {
width: 50px;
height: 50px;
background: url('/Images/WM_Close.png') no-repeat center center;
background-size: contain;
}
.wait {
width: 50px;
height: 50px;
background: url('/Images/WM_Wait.png') no-repeat center center;
background-size: contain;
}
.close-btn {
cursor: pointer;
color: #333;
font-size: 20px;
position: absolute;
top: 10px;
right: 10px;
}
#popup {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
text-align: center;
}
#overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
align-items: center;
justify-content: center;
}