-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.css
51 lines (44 loc) · 804 Bytes
/
test.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
* {
margin: 0;
padding: 0;
color: white;
font-family: 'Inconsolata', monospace;
}
input {
width: 100%;
color: white;
border: 0;
background-color: transparent;
outline: none;
font-size: 15px;
}
body {
overflow-x: hidden;
overflow-y: hidden;
}
#background {
height: 100vh;
}
.content {
z-index: 99999999;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.terminal {
width: 650px;
height: 500px;
background-color: rgb(0, 0, 0, 0.8);
padding: 1%;
white-space: pre-line;
overflow-y: scroll;
scrollbar-color: rgb(0, 0, 0, 0.8) green;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: black;
}