-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole_mono.css
153 lines (140 loc) · 2.33 KB
/
console_mono.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
@font-face {
font-family: "Share-TechMono";
src: url("damas-dashboard/fonts/Share-TechMono.otf");
}
@font-face {
font-family: "Liberation Mono";
src: url("damas-dashboard/fonts/LiberationMono-Regular.ttf");
}
body {
font-family: Arial, Helvetica, sans-serif;
}
table td.file,
table td.size,
table td.time,
table td.sync,
.time
{
/*
font-family: monospace;
font-family: "Share-TechMono", monospace;
*/
font-family: "Liberation Mono", monospace;
font-size: 10pt;
}
input {
line-height: 1.5;
padding: .3em .6em;
border-radius: .2em;
transition: .3s;
}
table th {
/*
background: #0074d9;
*/
color: #fff;
padding: .3em 2ex .3em 2ex;
}
table th.sync {
background: transparent;
color: #000;
padding: 0;
}
a {
/*
color: #0074d9;
*/
text-decoration: none;
box-shadow: none;
transition: all .3s;
}
/*
body * {
font-size: 12px;
}
.editorTitle {
padding: 1ex;
}
*/
.menubar a:hover {
/*
background-color: black;
color: white;
*/
box-shadow: inset 0 0 0 99em rgba(255, 255, 255, 0.2);
}
.menubar a {
border: 1px solid black;
text-decoration: none;
padding: 0 1ex;
/*
color: black;
*/
border: 0;
/*
background: #0074d9;
color: #fff;
*/
padding: .3em .9em;
border-radius: 0.2em;
margin: .3em 0;
transition: all .3s;
cursor: pointer;
line-height: 1.5;
display: inline-block;
}
.menubar a.selected, .menubar .clickable.selected, .button:active, .button:focus {
color: white;
cursor: default;
box-shadow: inset 0 0 0 99em rgba(255, 255, 255, 0.2)
}
#contents {
padding: 0 1ex;
}
/*
#contents table tr {
transition: opacity 2s;
}
#contents table td {
transition-property: background;
transition-duration: .1s;
}
*/
.layerContent table tbody:nth-child(odd) {
background : rgba(128,128,128,.05);
}
.layerContent table tr:hover {
background : rgba(128,128,128,.1);
background-opacity:.1;
}
table.log td.time {
width: 16ex;
cursor: zoom-in;
}
table.log td.buttons span {
margin: 0 0 0 .5ex;
cursor: pointer;
opacity: 0;
}
table.log td.buttons span.delete {
opacity: 1;
}
table.log td.buttons span:hover {
background: black;
color: white;
}
table.log tr:hover td.buttons span {
opacity: 1;
}
table.log tr.history td.time {
cursor: zoom-out;
}
/*
table.log tr.history.first {
border-top: 1px solid #666;
}
table.log tr.history.last {
box-shadow: 0px -4px 2px -2px #888 inset;
border-bottom: 1px solid #666;
}
*/