Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions examples/capture/capture.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}