Skip to content

Commit f8e8fd1

Browse files
authored
Merge pull request #1626 from koala-lava/patch-6
consistent CSS for the task and the solution
2 parents df4acb6 + 7f2118b commit f8e8fd1

File tree

1 file changed

+14
-4
lines changed
  • 2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/2-hoverintent/source.view

1 file changed

+14
-4
lines changed

Diff for: 2-ui/3-event-details/3-mousemove-mouseover-mouseout-mouseenter-mouseleave/2-hoverintent/source.view/style.css

+14-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
color: red;
33
}
44

5+
body {
6+
margin: 0;
7+
}
8+
59
.minutes {
610
color: green;
711
}
@@ -20,9 +24,15 @@
2024
top: 0;
2125
}
2226

23-
.tooltip {
27+
#tooltip {
2428
position: absolute;
25-
background: #eee;
26-
border: 1px brown solid;
27-
padding: 3px;
29+
padding: 10px 20px;
30+
border: 1px solid #b3c9ce;
31+
border-radius: 4px;
32+
text-align: center;
33+
font: italic 14px/1.3 sans-serif;
34+
color: #333;
35+
background: #fff;
36+
z-index: 100000;
37+
box-shadow: 3px 3px 3px rgba(0, 0, 0, .3);
2838
}

0 commit comments

Comments
 (0)