Skip to content
Snippets Groups Projects
Commit 728382ca authored by Rhys Evans's avatar Rhys Evans
Browse files

Hover-text is now colour coded to red/green,uncollected/collected

parent f18c4f1a
No related branches found
No related tags found
1 merge request!5Resolve "As a user I want to be able to see a list of specific landmarks so I can decide where to go next on the trail"
......@@ -105,8 +105,8 @@
.red .uncollected{ /*taken from https://www.w3schools.com/css/css_tooltip.asp*/
visibility: hidden;
width: 120px;
background-color: whitesmoke;
color: red;
background-color: red;
color: whitesmoke;
text-align: center;
padding: 5px 0;
border-radius: 6px;
......@@ -124,14 +124,16 @@
.red .collected{ /*taken from https://www.w3schools.com/css/css_tooltip.asp*/
visibility: hidden;
width: 120px;
background-color: whitesmoke;
color: green;
background-color: green;
color: whitesmoke;
text-align: center;
padding: 5px 0;
border-radius: 6px;
top: -5px;
left: 105%;
/*background-color: whitesmoke;*/
/*color: green;*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment