| Server IP : 92.204.40.98 / Your IP : 216.73.216.201 Web Server : LiteSpeed System : Linux amster.dnsfors.com 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : tmksyste ( 2190) PHP Version : 8.3.31 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/tmksyste/domains/tmksystems.in/private_html/applications/css/ |
Upload File : |
/* #######################################################
HOW TO CREATE AN INTERACTIVE GRAPH USING CSS3 & JQUERY [TUTORIAL]
"How to create an Interactive Graph using CSS3 & jQuery [Tutorial]" was specially made for DesignModo by our friend Valeriu Timbuc.
Links:
http://vtimbuc.net
http://designmodo.com
http://vladimirkudinov.com
######################################################## */
/* Resets */
.graph-container,
.graph-container div,
.graph-container a,
.graph-container span {
margin: 0;
padding: 0;
}
/* Gradinet and Rounded Corners */
.graph-container, #tooltip, .graph-info a {
}
/* Graph Container */
.graph-container {
position: relative;
width: 100%;
height: 350px;
}
.graph-container > div {
position: absolute;
width: inherit;
height: inherit;
top: 0px;
left: 2px;
}
.graph-info {
width: 590px;
margin-bottom: 10px;
}
/* Text Styles */
#tooltip, .graph-info a {
height: 25px;
font-size: 12px;
line-height: 13px;
color: #999;
}
.tickLabel {
font-size: 1.2em;
color: #999;
}
/* Tooltip */
#tooltip {
position: absolute;
display: none;
padding: 5px 10px;
border: 1px solid #999;
}
/* Links */
.graph-info a {
position: relative;
display: inline-block;
float: left;
padding: 7px 10px 5px 30px;
margin-right: 10px;
text-decoration: none;
cursor: default;
}
/* Color Circle for Links */
.graph-info a:before {
position: absolute;
display: block;
content: '';
width: 8px;
height: 8px;
top: 13px;
left: 13px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
/* Colors For each Link */
.graph-info .visitors { border-bottom: 2px solid #67398C; }
.graph-info .returning { border-bottom: 2px solid #77b7c5; }
.graph-info .visitors:before { background: #67398C; }
.graph-info .returning:before { background: #67398C; }
/* Hide the First and Last Y Label */
.yAxis .tickLabel:first-child,
.yAxis .tickLabel:last-child { display: none; }
/* Clear Floats */
.graph-info:before, .graph-info:after,
.graph-container:before, .graph-container:after {
content: '';
display: block;
clear: both;
}
.graph-container h3{
font-size:1.5em;
color:#FFF;
margin-bottom:1em;
}
/*--media Quries for 1024px-laptops-*/
@media(max-width: 1024px) {
.graph-container {
height: 499px;
}
}
/*--media Quries for 768px-laptops-*/
@media (max-width:768px) {
.graph-container {
height: 430px;
margin: 1em;
width: 94%;
}
}
@media (max-width:320px) {
.graph-container {
height: 370px;
margin: 1em;
width: 94%;
}
}