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; } html.wait, html.wait * { cursor: wait !important; }
:root { :root {
--color1:#fc5185;
--color2:#f5f5f5;
--color3:#3fc1c9;
--color4:#364f6b;
}
:other{
--color1:#6ba083; --color1:#6ba083;
--color2:#222831; --color2:#222831;
--color3:#6ba083; --color3:#6ba083;
--color4:#eeeeee; --color4:#eeeeee;
} }
html,body{ html,body{
margin:0; margin:0;
padding:0; padding:0;
...@@ -37,7 +46,21 @@ div#side{ ...@@ -37,7 +46,21 @@ div#side{
float:left; float:left;
} }
a {
color: var(--color1);
}
a:active,a:hover {
color: var(--color3);
}
a:visited, a:selected {
color: var(--color4);
}
div#dataPanel{ div#dataPanel{
color: var(--color2);
background-color: var(--color4); background-color: var(--color4);
width:90%; width:90%;
height:80%; height:80%;
...@@ -49,6 +72,7 @@ div#dataPanel{ ...@@ -49,6 +72,7 @@ div#dataPanel{
-moz-box-sizing:border-box; -moz-box-sizing:border-box;
-webkit-box-sizing:border-box; -webkit-box-sizing:border-box;
} }
div#side input{ div#side input{
width:90%; width:90%;
} }
......
Supports Markdown
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