-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (101 loc) · 1.44 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
* style.css (https://github.com/chjj/tty.js)
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
*/
html, body {
margin: 0;
padding: 0;
}
div {
border: 0;
padding: 0;
margin: 0;
}
html {
background: #fff;
}
html.dark {
background: #333;
}
html.maximized {
overflow: hidden;
}
body {
margin: 25px;
}
/* Only allow plaintext?
[contenteditable=""],
[contenteditable="true"] {
-webkit-user-modify: read-write-plaintext-only !important;
}
*/
/**
* Terminal
*/
.window {
padding-top: 15px;
border: #fafafa solid 1px;
background: #272829;
position: absolute;
top: 0px;
left: 0px;
z-index: 1000;
}
.maximized .window {
border: none;
box-shadow: none;
}
.dark .window {
box-shadow: none;
}
.bar {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 13px;
padding: 1px 0;
color: #fafafa;
}
.dark .bar,
.maximized .bar {
}
.title {
position: absolute;
right: 5px;
top: 2px;
font-size: 11px;
cursor: default;
}
.tab {
font-size: 16px;
margin-left: 8px;
margin-top: -2px;
float: left;
cursor: pointer;
}
.tab:hover {
font-weight: bold;
}
.grip {
position: absolute;
bottom: -10px;
right: -10px;
width: 22px;
height: 22px;
cursor: se-resize;
z-index: -1;
background: transparent;
}
.grip:hover {
}
.terminal {
border: #000 solid 5px;
font-size: 11px;
color: #f0f0f0;
background: #000;
}
.reverse-video {
color: #000;
background: #f0f0f0;
}