-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (56 loc) · 1.18 KB
/
style.css
File metadata and controls
65 lines (56 loc) · 1.18 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
body {
background-color: black;
color: #00ff00;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
overflow-x: hidden;
animation: fadeIn 2s ease-in;
}
.center-box, .info-box, .files-box {
width: 90%;
max-width: 600px;
margin: 80px auto;
padding: 20px;
text-align: center;
border: 2px solid #00ff00;
box-shadow: 0 0 20px #00ff00;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.9);
animation: pulse 4s infinite;
}
.clock {
margin-top: 10px;
font-size: 1.2em;
}
button, .access-button {
margin-top: 20px;
background-color: black;
border: 2px solid #00ff00;
padding: 10px 20px;
color: #00ff00;
font-size: 1em;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s;
}
button:hover, .access-button:hover {
background-color: #003300;
}
.warning {
margin-top: 15px;
font-size: 0.9em;
color: #ff0000;
}
.hidden {
display: none;
}
@keyframes pulse {
0%, 100% { box-shadow: 0 0 20px #00ff00; }
50% { box-shadow: 0 0 30px #00cc00; }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}