Merge pull request #1626 from koala-lava/patch-6

consistent CSS for the task and the solution
This commit is contained in:
Ilya Kantor 2019-11-30 09:52:36 +03:00 committed by GitHub
commit f8e8fd1d0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,10 @@
color: red; color: red;
} }
body {
margin: 0;
}
.minutes { .minutes {
color: green; color: green;
} }
@ -20,9 +24,15 @@
top: 0; top: 0;
} }
.tooltip { #tooltip {
position: absolute; position: absolute;
background: #eee; padding: 10px 20px;
border: 1px brown solid; border: 1px solid #b3c9ce;
padding: 3px; border-radius: 4px;
text-align: center;
font: italic 14px/1.3 sans-serif;
color: #333;
background: #fff;
z-index: 100000;
box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
} }