-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsspiechart.html
More file actions
55 lines (51 loc) · 1.07 KB
/
Copy pathcsspiechart.html
File metadata and controls
55 lines (51 loc) · 1.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<style>
.pie-slice{
position:absolute;
margin-left: 20%;
margin-top: 10%;
width:160px;
height:160px;
box-shadow:inset 0px 0px 10px #000;
border:1px solid #000;
line-height:160px;
font-weight: bold;
font-family: verdana;
font-size: 1.5em;
text-align:center;
text-shadow: 1px 1px #ffef96;
}
.pie-slice:nth-child(1){
background-color:#ffcce6;
border-top-left-radius:160px;
}
.pie-slice:nth-child(2){
background-color:#99ff99;
border-top-right-radius:160px;
left:175px;
width:155px;
height:155px;
}
.pie-slice:nth-child(3){
background-color:#ffffe6;
border-bottom-left-radius:160px;
top:170px;
}
.pie-slice:nth-child(4){
background-color:#b3daff;
left:170px;
top:170px;
border-bottom-right-radius:160px;
}
</style>
</head>
<body>
<div class="pie-slice">A</div>
<div class="pie-slice">B</div>
<div class="pie-slice">C</div>
<div class="pie-slice">D</div>
</body>
</html>