Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 366e0047204a97d0db422db6b2c98e57d9313a64 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2013-2020 LAAS-CNRS (www.laas.fr)
 * 7 Colonel Roche 31077 Toulouse - France
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * Contributors:
 *     Thierry Monteil (Project co-founder) - Management and initial specification,
 *         conception and documentation.
 *     Mahdi Ben Alaya (Project co-founder) - Management and initial specification,
 *         conception, implementation, test and documentation.
 *     Khalil Drira - Management and initial specification.
 *     Guillaume Garzone - Initial specification, conception, implementation, test
 *         and documentation.
 *     François Aïssaoui - Initial specification, conception, implementation, test
 *         and documentation.
 ******************************************************************************/

body {
    width: 95%;
    margin: 0px auto;
    font-family: 'trebuchet MS', 'Lucida sans', Arial;
    font-size: 14px;
    color: #444;
    padding-top: 10px;
}

.bordered {
    border: solid #ccc 1px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 1px #ccc;
    -moz-box-shadow: 0 1px 1px #ccc;
    box-shadow: 0 1px 1px #ccc;
    border-spacing: 0;
    width: 100%;
}

.bordered tr:hover {
    background: #fbf8e9;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.bordered td, .bordered th {
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    padding: 10px;
}

.bordered th {
    background-color: #dce9f9;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
    -moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
    border-top: none;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

li:hover {
color:red;
text-decoration:none;
}

li:active {
   color:blue;
   font-weight: bold;
}

ul {
margin: 0 0 0 0;
   color:black;
}

.tree, .tree ul {
  font: normal normal 20px/30px Helvetica, Arial, sans-serif;
  list-style-type: none;
  margin-left: 0 0 0 10px;
  position: relative;
  overflow:hidden;
}

.tree li {
  margin: 0;
  padding: 0 5px;
  position: relative;
}

.tree li::before, .tree li::after {
  content: '';
  position: absolute;
  left: -10px;
}

/* horizontal line on inner list items */
.tree li::before {
  border-top: 1px solid #999;
  top: 15px;
  width: 10px;
  height: 0;
}

/* vertical line on list items */
.tree li:after {
  border-left: 1px solid #999;
  height: 100%;
  width: 0px;
  top: -15px;
}

/* lower line on list items from the first level because they don't have parents */
.tree > li::after {
  top: 10px;
}

/* hide line from the last of the first level list items */
.tree > li:last-child::after {
  display: none;
}

#url {
    font-size: 20px;
    color: #0036C2;
}

th {
    color: #0036C2;
    text-align: center;
}

li {
    cursor: pointer;
}s
#login table {
     border-width:1px;
     border-style:solid;
     border-color:black;
}
#login button {
    float: right;
}

Back to the top