-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
181 lines (154 loc) · 2.95 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
@font-face {
font-family: FuturaPerso;
src: url("futura.otf");
}
html
{
overflow-y:auto;
}
html, body {
margin:0;
padding:0;
width:100%;
height:100%;
}
body {
background:black;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
}
h1,h2,h3,h4,h5,h6, .button.ui {
font-family:FuturaPerso, "Helvetica Neue",Helvetica,Arial,sans-serif;
margin:0;
}
.ui {
position:absolute;
z-index:1;
}
.button, .box, .list {
/*background:rgba(0,0,0,0.1);*/
padding:4px 8px 4px 8px;
border-radius:10px;
box-shadow:1px 1px 1em rgba(0,0,0,0.8) inset;
color:white;
}
#uiBox {
top:3em;
right:0.5em;
left:0.5em;
bottom:0.5em;
width:100%;
/*position:absolute;
/*height:50%;*/
height:100%;
}
#screen {
height:50%;
}
.box {
position:relative;
background:url(fond2.jpeg);
}
.box canvas {
position:absolute;
top:4px;
left:8px;
}
.ui.button {
font-weight:bold;
text-decoration:none;
cursor:pointer;
}
.fullscreenButton {
right:0.5em;
top:0.5em;
}
#reportList {
top:0.5em;
left:0.5em;
}
#reportList ul {
margin:0;
padding:0;
list-style:none;
display:none;
}
#reportList:hover ul {
display:block;
}
#reportList ul li {
margin:2px -8px 2px -8px;
padding:2px 0px 2px 8px;
cursor:pointer;
color:white;
}
#reportList ul li:hover {
background:rgba(255,255,255,0.1);
}
#reportList .selected {
background:rgba(255,255,255,0.3);
}
#infosBox, #canard3Box {
width:33%;
height:45%;
/*position:absolute;*/
}
#infosBox .number {
color:black;
border-radius: 5px;
padding: 11px;
text-align: center;
font-size: 2.5em;
font-weight: bold;
text-shadow: 0px 0px 2px black;
box-shadow: 0px 0px 11px black inset;
background: #bfd255; /* Old browsers */
background: -moz-linear-gradient(top, #bfd255 0%, #8eb92a 50%, #72aa00 51%, #9ecb2d 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bfd255), color-stop(50%,#8eb92a), color-stop(51%,#72aa00), color-stop(100%,#9ecb2d)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* IE10+ */
background: linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfd255', endColorstr='#9ecb2d',GradientType=0 ); /* IE6-9 */
}
#infosBox .shadow {
box-shadow: 0px 0px 11px black;
}
.table
{
overflow-y:scroll;
overflow-x:hidden;
font-family:mono;
font-size:0.9em;
width:auto;
}
.table table
{
border-collapse:collapse;
}
.table thead
{
background:blue;
color:yellow;
}
.table tr:hover, .table tr.selected
{
background:grey;
}
.table td
{
text-align:center;
border:1px solid yellowgreen;
}
/*.table tbody tr
{
background:rgba(240,240,240,0.3);
text-align:center;
}
.table tbody tr:nth-child(odd)
{
background:rgba(255,255,255,0.3);
}*/
h1, h2, h3, h4, h5, h6
{
color:white;
}