-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (51 loc) · 936 Bytes
/
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
body {
background-color: black;
}
#screen {
position: relative;
width: 100%;
height: 600px;
background-color: rgb(37, 0, 37);
}
#scan, #bezel{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
#scan {
opacity: 80%;
}
span {
color: rgb(255, 97, 97);
}
.terminal {
color: yellow;
}
.whoami{
color: rgb(0, 228, 0);
}
.help {
color: rgb(0, 228, 0);
}
.socials {
color: rgb(0, 195, 255);
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#content {
font-family: VT323;
padding-top: 70px;
padding-left: 100px;
color: white;
font-size: 20px;
text-shadow: 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em blue;
}