123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #grid {
- -moz-transform: translate(1px, 0px);
- -ms-transform: translate(1px, 0px);
- -webkit-transform: translate(1px, 0px);
- transform: translate(1px, 0px);
- }
- /* GRAPH - 1 */
- #graph-1 {
- stroke: url(#gradient-1);
- stroke-width: 1.5;
- fill: transparent;
- stroke-linecap: round;
- stroke-linejoin: round;
- -moz-animation: lineani 1.3s linear forwards;
- -webkit-animation: lineani 1.3s linear forwards;
- animation: lineani 1.3s linear forwards;
- }
- #graph-2 {
- stroke: url(#gradient-2);
- stroke-width: 1.5;
- fill: transparent;
- stroke-linecap: round;
- stroke-linejoin: round;
- -moz-animation: lineani 1.3s linear forwards;
- -webkit-animation: lineani 1.3s linear forwards;
- animation: lineani 1.3s linear forwards;
- }
- #poly-1 {
- fill: url(#gradient-3);
- }
- #poly-2 {
- fill: url(#gradient-4);
- }
- #grid .horizontal, .vertical {
- stroke-width: 0.1;
- stroke: #4a667a;
- }
|