Commit 093a1300 authored by Eric Duminil's avatar Eric Duminil
Browse files

RegionChooser: CSS color variables.

parent 54228826
html.wait, html.wait * { cursor: wait !important; }
:root {
--color1:#fc5185;
--color2:#f5f5f5;
--color3:#3fc1c9;
--color4:#364f6b;
}
:other{
--color1:#6ba083;
--color2:#222831;
--color3:#6ba083;
--color4:#eeeeee;
}
html,body{
margin:0;
padding:0;
......@@ -37,7 +46,21 @@ div#side{
float:left;
}
a {
color: var(--color1);
}
a:active,a:hover {
color: var(--color3);
}
a:visited, a:selected {
color: var(--color4);
}
div#dataPanel{
color: var(--color2);
background-color: var(--color4);
width:90%;
height:80%;
......@@ -49,6 +72,7 @@ div#dataPanel{
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
}
div#side input{
width:90%;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment