diff --git a/examples/capture/capture.css b/examples/capture/capture.css index a68e53ad..e0c2b0cc 100644 --- a/examples/capture/capture.css +++ b/examples/capture/capture.css @@ -41,4 +41,30 @@ hr { width: 1024px; height: 200px; margin: 10px 0px; + background-image: linear-gradient(to right, rgb(137, 216, 245), rgb(0, 64, 128)); } + +.col-md-10{ + display:flex; + flex-direction: column; + align-items: center; + justify-content: center +} + + +/*MEDIA QUERIES FOR GRAPH RESPONSIVE*/ + +@media only screen and (max-width:1030px) +{ + #graph{ + width:500px; + } +} + +@media only screen and (max-width:520px) +{ + #graph{ + width:400px; + } +} +