summaryrefslogtreecommitdiff
path: root/src/www/syntax-editor/editor.css
blob: 1675372f77144b6c09cd3bca6ec180b5d71b5185 (plain)
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
body.syntax_editor {
    background: #ccc url("../minibar/brushed-metal.png");
}

.hidden
{ 
  display:none;
}

select#to_menu
{ 
  height: 10em;
  position: absolute;
  min-width: 5em;
  }

#tree
{
  white-space:pre;
  font-family: monospace;
  background: rgba(238, 238, 238, 0.6);
  padding:0.5em;
  margin:0.5em 0;
  }

#tree .node
{
  margin: 0.4em 0 0.4em 1.5em;
  }

#tree .node a
{ 
  cursor: pointer;
  }
#tree .node a:hover
{ 
  text-decoration: underline;
  }
#tree .node a.current
{ 
  font-weight: bold;
  }

#linearisations
{
  /* background: rgba(170, 170, 170, 0.5); */
  padding:0.5em;
  margin:0.5em 0;
  }
#linearisations div
{
  padding:0.2em;
  }
#linearisations .lang
{
  display: inline-block;
  margin-right: 0.5em;
  width: 3em;
  font-weight: bold;
  text-align: center;
  }
#linearisations .lin
{
  }

.refinement
{ 
  margin: 0 0.1em;
  display: inline-block;
  cursor: pointer;
  border: 1px solid;
  padding: 0.2em;
  font: 0.9em sans-serif;
  background: white;
  }