-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjm.css
executable file
·46 lines (46 loc) · 856 Bytes
/
jm.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
body, html {
margin: 0;
padding: 0;
}
* {
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
}
html, body {
height: 100%;
margin: 0;
width: 100%;
}
body {
font: 12px "Monaco", Inconsolata, monospace;
background: #2c3e50;
color: #f8f8f8;
}
.terminal {
background: transparent;
position: absolute;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -125px;
text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.4);
width: 300px;
font: inherit;
border: none;
outline: none;
color: inherit;
}
.dollar:before {
content: 'root@govomoon:~$';
color: #2ecc71;
}
.home {
color: #e28d47;
padding-bottom: 3px;
}
a {
font: 12px "Monaco", Inconsolata, monospace;
text-decoration: underline;
color: #f8f8f8;
}