-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (40 loc) · 864 Bytes
/
styles.css
File metadata and controls
45 lines (40 loc) · 864 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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #282c34;
color: #ffffff;
font-family: 'Courier New', Courier, monospace;
margin: 0;
overflow: hidden;
}
.terminal {
position: relative;
width: 600px;
height: 540px;
background-color: #000000;
border: 2px solid #808080;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
overflow-y: auto;
z-index: 1; /* Assurez-vous que le terminal est au-dessus de l'effet Matrix */
}
.command {
margin: 0;
}
.input {
color: #00ff00;
}
canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0; /* L'effet Matrix est en arrière-plan */
}
.menu-option {
color: cyan;
cursor: pointer;
}