-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcssify.css
85 lines (64 loc) · 1.21 KB
/
cssify.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
html, body {
transition: all 0.5s ease-in-out;
background-color: #222;
color: #eee;
margin: 0;
padding: 0;
}
.rotate_please {
margin-top: 110px;
}
.qt_please {
margin-top: 600px;
}
/* The console container element */
#console {
height: 100%;
width: 100%;
position: relative;
background-color: #222;
border: none;
margin: 0 auto;
margin-top: 0px;
}
/* The inner console element. */
.jqconsole {
padding: 30px;
}
/* The cursor. */
.jqconsole-cursor {
color: #eee;
/*position: relative !important;*/
opacity: 0.5;
background-color: white;
}
/* The cursor color when the console loses focus. */
.jqconsole-blurred .jqconsole-cursor {
color: white;
background-color: white;
}
/* The current prompt text color */
.jqconsole-prompt {
color: #eee;
}
/* The command history */
.jqconsole-old-prompt {
color: #eee;
font-weight: normal;
}
/* The text color when in input mode. */
.jqconsole-input {
color: #eee;
}
/* Previously entered input. */
.jqconsole-old-input {
color: #858585;
font-weight: normal;
}
/* The text color of the output. */
.jqconsole-output {
color: #858585;
}
.special, a {
color: #5CD6D6;
}