File: rope.css

package info (click to toggle)
ocaml-rope 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 536 kB
  • sloc: ml: 1,715; sh: 33; makefile: 27
file content (106 lines) | stat: -rw-r--r-- 1,321 bytes parent folder | download | duplicates (3)
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

A:active {
  color: #ff6600;
}

A:visited {
  color: #999999;
}

/***
   * Code
   */

code.ocaml {
  display: block;
/*   font-size: large; */
  background-color: rgb(240,245,254);
  padding: 5px;
}

.prompt {
  color: rgb(128,128,128);
}

.let {
  font-weight: bold;
}

.module {
  color: rgb(126,27,29);
}

span.input:hover {
  background-color: rgb(200,200,200);
}

.answer {
  font-style: italic;
}
span.answer:hover {
  background-color: rgb(200,200,200);
}

/* Banner ---------------------------------------- */

#banner {
  text-align: center;
}

#banner img {
  padding-top: 1ex;
  clear: both;
}

/* Menu ---------------------------------------- */

#menu {
  Float: left;
  width: 18%;
  /* border: 1px dashed black; */
  font-family: sans-serif;
  font-weight: bolde;
  font-size: x-large;
  color: #981419;
  margin-top: 2ex;
  background: #d5dbe4;
  /* padding: 2px; */
}

#menu ul, #menu li {
  display : inline;
  list-style-type : none;
  margin : 0;
  padding : 0;
}

#menu li {
  padding-top: 0px;
  padding-bottom: 0px;
  display: block;
}

#menu li:hover {
  background-color: #fdf9b9;
}

#menu a {
  text-decoration: none;
  width: 120px;
}

#main {
  Float: right;
  width: 80%;
}

/* General */

body {
  color: black;
  background-color: rgb(255,255,255);
}

A:link {
  color: rgb(126,27,29);
}