style.css 2.81 KB
Newer Older
1
2
html.wait, html.wait * { cursor: wait !important; }

3
/* Alternative palettes
Eric Duminil's avatar
Eric Duminil committed
4
:palette0 {
5
6
7
8
	--color1:#fc5185;
	--color2:#f5f5f5;
	--color3:#3fc1c9;
	--color4:#364f6b;
9
10
}

11
12
13
14
15
:palette1{
	--color1:#071c21;
	--color2:#153b44;
	--color3:#2d6e7e;
	--color4:#c6de41;
Eric Duminil's avatar
Eric Duminil committed
16
17
}

18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
:palette3{
	--color1:#1a3c40;
	--color2:#144d53;
	--color3:#307672;
	--color4:#e4eddb;
}

:palette2{
	--color1:#f0b917;
	--color2:#155263;
	--color3:#76b39d;
	--color4:#f9f8eb;
}

:palette4{
	--color1:#ff7f50;
	--color2:#404969;
	--color3:#bde4f4;
	--color4:#e0fcff;
}
38

Eric Duminil's avatar
Eric Duminil committed
39
40
41
42
43
44
45
46
47
48
49
50
51
:palette5{
	--color1:#393939;
	--color2:#ff7f5b;
	--color3:#d2ebcd;
	--color4:#fffcef;
}

:palette6{
	--color1:#1e2022;
	--color2:#52616b;
	--color3:#c9d6df;
	--color4:#f0f5f9;
}
52
*/
Eric Duminil's avatar
Eric Duminil committed
53

54
/* Blue gradient
Eric Duminil's avatar
Eric Duminil committed
55
56
57
58
59
60
:root{
	--color1:#112d4e;
	--color2:#3f72af;
	--color3:#dbe2ef;
	--color4:#f9f7f7;
}
61
*/
62

63
64
65
66
html,body{
	margin:0;
	padding:0;
	font-family:Arial, Helvetica, sans-serif;
67
    background-color: #3f72af;
68
69
70
71
72
73
74
75
76
77
78
79
}

form.pay{
	width:200px;
	display:inline;
}
div#header{	
	vertical-align:middle;
}

div#map{
	width:70%;
Eric Duminil's avatar
Eric Duminil committed
80
81
	min-height:660px;
	height: auto;
82
	float:left;
duminil's avatar
duminil committed
83
	outline: 0;
84
85
	background-color: #f9f7f7;
	border:1px solid #dbe2ef;
86
	box-sizing: border-box;
87
88
89
90
91
92
}
div#side{
	width:30%;
	float:left;
}

93
a {
94
	color: #112d4e;
95
	text-decoration: none;
96
97
98
}

a:active,a:hover {
99
	color: #3f72af;
100
101
102
}

a:visited, a:selected {
103
	color: #3f72af;
104
105
106
}


107
div#dataPanel{
108
	box-sizing: border-box;
109
110
	color: #3f72af;
	background-color: #f9f7f7;
Eric Duminil's avatar
Eric Duminil committed
111
	height:660px;
112
	overflow:auto;
113
	border:1px solid #dbe2ef;
duminil's avatar
duminil committed
114
115
116
117
118
	font-family: Consolas,monaco,monospace;
	font-size: 12px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
Eric Duminil's avatar
Eric Duminil committed
119
120
121
	 word-wrap: break-word;
}

122
123
124
125
div#dataPanel h2 {
	font-size: 16px;
}

Eric Duminil's avatar
Eric Duminil committed
126
div#dataPanel li {
127
	list-style-type: none;
Eric Duminil's avatar
Eric Duminil committed
128
129
130
    padding: 2px 0 0 0;
    margin: 5px 0;
    line-height: 1;
131
}
132

133
134
135
136
137
138
139
140
141
142
div#side input{
	width:90%;
}

div#side input.navi{
	font-size:18px;
	height:30px;
	margin-bottom:10px;
}
div ul{
Eric Duminil's avatar
Eric Duminil committed
143
144
	margin-top:15px;
	margin-bottom:15px;
145
146
147
148
}
div ul li{
	display: inline;
	list-style-type: none;
149
	padding-right: 30px;
150
151
152
153
154
155
	font-size:18px;
	font-weight:bold;
}

div ul li.title{
	font-size:22px;
156
	font-family: Calibri;
157
    color: #f9f7f7;
158
159
}

Eric Duminil's avatar
Eric Duminil committed
160
div#header{
161
162
163
	font-size:14px;
	padding-left:20px;
}
Eric Duminil's avatar
Eric Duminil committed
164

165
166
167
168
169
170
171
172
173
span.instruction{
	font-weight:bold;
}

.message-box { text-align: center; padding: 5px; color:#545454; width:80%;  margin:5px auto; font-size:12px;}
.clean { background-color: #efefef; border-top: 2px solid #dedede; border-bottom: 2px solid #dedede; }
.info  { background-color: #f7fafd; border-top: 2px solid #b5d3ff; border-bottom: 2px solid #b5d3ff; }
.ok    { background-color: #d7f7c4; border-top: 2px solid #82cb2f; border-bottom: 2px solid #82cb2f; }
.alert { background-color: #fef5be; border-top: 2px solid #fdd425; border-bottom: 2px solid #fdd425; }
Eric Duminil's avatar
Eric Duminil committed
174
.error { background-color: #ffcdd1; border-top: 2px solid #e10c0c; border-bottom: 2px solid #e10c0c; }