-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from khoa-nd/master
Merged
- Loading branch information
Showing
48 changed files
with
9,996 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,264 @@ | ||
.bubble-chart-container { | ||
min-height: 380; | ||
} | ||
|
||
#box { | ||
position: relative; | ||
} | ||
#box .circle { | ||
cursor: pointer; | ||
text-align: center; | ||
width: 1000px; | ||
height: 1000px; | ||
position: absolute; | ||
} | ||
#box .active { | ||
width: 340px; | ||
height: 340px; | ||
cursor: pointer; | ||
z-index: 0 !important; | ||
} | ||
#box .circle span { | ||
width: 125px; | ||
font-size: 18px; | ||
position: relative; | ||
color: #efefef; | ||
text-transform: capitalize; | ||
} | ||
#box .circle strong { | ||
display: block; | ||
clear: both; | ||
font-weight: 400; | ||
} | ||
#box #pmTech span { | ||
top: -68%; | ||
} | ||
#box .circle .circle-content { | ||
background: red; | ||
border-radius: 50%; | ||
width: 150px; | ||
height: 150px; | ||
} | ||
#box .circle .redColor { | ||
background: red; | ||
} | ||
#box .circle .blueColor { | ||
background: #106da4; | ||
} | ||
#box .circle .yellowColor { | ||
background: #d7c500; | ||
} | ||
#box .circle .pinkColor { | ||
background: #cc21a0; | ||
} | ||
#box .circle .greenColor { | ||
background: #11a06c; | ||
} | ||
#box .circle .orangeColor { | ||
background: #d26e03; | ||
} | ||
#box .circle .lightSalmonColor { | ||
background: lightsalmon; | ||
} | ||
#box .circle .indigoColor { | ||
background: indigo; | ||
} | ||
#box .circle .oliveColor { | ||
background: olive; | ||
} | ||
#box .circle .saddleBrownColor { | ||
background: saddlebrown; | ||
} | ||
#box .textSize1 { | ||
width: 50px; | ||
height: 50px; | ||
} | ||
#box .textSize1 .circle-content { | ||
width: 50px; | ||
height: 50px; | ||
} | ||
#box .textSize1 span { | ||
font-size: 10px; | ||
line-height: 5px; | ||
top: 30px !important; | ||
width: 50px; | ||
} | ||
#box .textSize1 strong { | ||
font-size: 12px; | ||
} | ||
#box .textSize2 { | ||
width: 75px; | ||
height: 75px; | ||
} | ||
#box .textSize2 .circle-content { | ||
width: 75px; | ||
height: 75px; | ||
} | ||
#box .textSize2 span { | ||
font-size: 15px; | ||
line-height: 16px; | ||
top: 30px !important; | ||
width: 75px; | ||
} | ||
#box .textSize2 strong { | ||
font-size: 20px; | ||
} | ||
#box .textSize3 { | ||
width: 100px; | ||
height: 100px; | ||
} | ||
#box .textSize3 .circle-content { | ||
width: 100px; | ||
height: 100px; | ||
} | ||
#box .textSize3 span { | ||
font-size: 18px; | ||
line-height: 22px; | ||
top: 45px !important; | ||
width: 100px; | ||
} | ||
#box .textSize3 strong { | ||
font-size: 25px; | ||
} | ||
#box .textSize4 { | ||
width: 125px; | ||
height: 125px; | ||
} | ||
#box .textSize4 .circle-content { | ||
width: 125px; | ||
height: 125px; | ||
} | ||
#box .textSize4 span { | ||
top: 50px !important; | ||
width: 125px; | ||
} | ||
#box .textSize5 { | ||
width: 175px; | ||
height: 175px; | ||
} | ||
#box .textSize5 .circle-content { | ||
width: 175px; | ||
height: 175px; | ||
} | ||
#box .textSize5 span { | ||
top: 60px !important; | ||
width: 175px; | ||
} | ||
#box .textSize6 { | ||
width: 200px; | ||
height: 200px; | ||
} | ||
#box .textSize6 .circle-content { | ||
width: 200px; | ||
height: 200px; | ||
} | ||
#box .intro { | ||
display: none; | ||
width: 250px; | ||
color: #727272; | ||
position: absolute; | ||
bottom: 100px; | ||
left: 35px; | ||
line-height: 15px; | ||
} | ||
#box .circle-content p { | ||
font-size: 12px; | ||
display: none; | ||
position: absolute; | ||
text-align: center; | ||
color: #efefef; | ||
left: 0; | ||
right: 0; | ||
width: 0; | ||
} | ||
#box .circle-content i { | ||
display: none; | ||
} | ||
#box .active span { | ||
font-size: 35px; | ||
line-height: 40px; | ||
top: 120px !important; | ||
text-align: center; | ||
width: 320px; | ||
} | ||
#box .active strong { | ||
font-size: 45px; | ||
} | ||
#box .active i { | ||
font-size: 12px; | ||
display: block; | ||
clear: both; | ||
} | ||
#box .active p { | ||
display: block; | ||
top: 270px; | ||
} | ||
|
||
.bubble-chart-error { | ||
display: none; | ||
width: 300px; | ||
color: red; | ||
margin: auto; | ||
} | ||
|
||
.small { | ||
z-index: 5 !important; | ||
} | ||
|
||
.ball-highlight { | ||
border: 5px solid rgba(255, 255, 255, 0.9); | ||
opacity: 1; | ||
border-top: 5px solid rgba(0, 0, 0, 0); | ||
border-left: 5px solid rgba(0, 0, 0, 0); | ||
border-right: 5px solid rgba(0, 0, 0, 0); | ||
border-radius: 50%; | ||
width: 100px; | ||
height: 100px; | ||
margin: 0 auto; | ||
-moz-animation: spin 3s infinite linear; | ||
-webkit-animation: spin 3s infinite linear; | ||
display: none; | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
} | ||
|
||
@-moz-keyframes spin { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-moz-transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@-moz-keyframes spinoff { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-moz-transform: rotate(-360deg); | ||
} | ||
} | ||
|
||
@-webkit-keyframes spin { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-webkit-transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@-webkit-keyframes spinoff { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-webkit-transform: rotate(-360deg); | ||
} | ||
} |
Oops, something went wrong.