-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircle
70 lines (68 loc) · 1.88 KB
/
Circle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:600" rel="stylesheet">
<style>
.circle {
border: 6px solid pink;
background: pink;
border-radius: 50%;
width: 100px; height: 100px;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
span.CircleText {
font-family: Century Gothic;
font-size: 150%;
font-weight: bold;
color: white;
text-shadow: 3px 2px grey;
}
span.MoreInfo {
font-family: 'Josefin Sans', sans-serif;
font-size: 120%;
color: #F1948A;
}
.hidden {display:none}
.circle:hover
.hidden {display:block}
</style>
<center>
<table>
<tr>
<td><div class="circle">
<div class="inside">
<span class="CircleText"> <br />     fire</span>
</div>
<br /><br />
<div class="hidden">
<span class="MoreInfo">The sea turtle population has halved within the past 30 years due to plastic in oceans.</span>
</div>
</div></td>
<td><div class="circle">
<div class="inside">
<span class="CircleText"> <br />  polar bears</span>
</div>
<br /><br />
<div class="hidden">
<span class="MoreInfo">The sea turtle population has halved within the past 30 years due to plastic in oceans.</span>
</div>
</div></td>
<td><div class="circle">
<div class="inside">
<span class="CircleText"> <br />  turtle</span>
</div>
<br /><br />
<div class="hidden">
<span class="MoreInfo">The sea turtle population has halved within the past 30 years due to plastic in oceans.</span>
</div>
</div></td>
<td><div class="circle">
<div class="inside">
<span class="CircleText"> <br />  ice bergs</span>
</div>
<br /><br />
<div class="hidden">
<span class="MoreInfo">The sea turtle population has halved within the past 30 years due to plastic in oceans.</span>
</div>
</div></td>
</tr>
</table>
</center>