-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (39 loc) · 713 Bytes
/
Copy pathstyles.css
File metadata and controls
46 lines (39 loc) · 713 Bytes
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
img{
display: flex;
}
body {
font-family: 'Courier New', Courier, monospace;
background-color: rgb(0, 0, 0);
color: rgb(0, 255, 0);
text-align: center;
}
#loadingScreen {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#hackScreen {
padding: 20px;
}
#progressContainer {
margin-top: 20px;
}
#progressText {
font-size: 1.5em;
}
#hackDetails {
margin-top: 20px;
text-align: left;
font-size: 1.2em;
}
.animate-entry {
position: relative;
opacity: 0;
transform: translateX(-100%);
transition: opacity 1s ease, transform 1s ease;
}
.animate-entry.visible {
opacity: 1;
transform: translateX(0);
}