-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
71 lines (64 loc) · 1.04 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
body {
margin: 0;
}
/* The editor widget. */
.CodeMirror {
border: 1px solid #ccc;
resize: vertical;
}
.CodeMirror-linewidget {
text-align: center;
}
/* Breakpoint bullets */
.breakpoints {
width: 0.8em;
}
.breakpoint {
color: #f66;
text-size: 1em;
}
/* The line being executed. */
.selected-line {
background-color: #ff7;
}
.selected-line {
background-color: #ff7;
}
/* The status line at the top. */
.status {
background-color: #000;
color: #ccc;
font-family: monospace;
}
/* Tables */
tr:nth-child(even) {
background-color: #f0f0f0;
}
tr:nth-child(odd) {
background-color: #f7f7f7;
}
th {}
td {
font-family: monospace;
}
/* Tabs */
.tab {
overflow: hidden;
background-color: #f0f0f0;
}
.tab button {
background-color: inherit;
float: left;
outline: none;
cursor: pointer;
padding: 6px 10px;
border: 1px #fff solid;
}
.tab button.active, .tab button:hover {
background-color: #ccc;
text-shadow: -0.04ex 0 black, 0.04ex 0 black;
}
.tab-content {
display: none;
padding: 0px 0px;
}