File size: 1,675 Bytes
dd619d6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
body {
height: 100%;
}
.bg {
/* The image used */
background-image: url("/static/images/background1.png");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
section{
padding-top: 60px;
}
.width-300{
width: 300px;
margin: auto;
padding: 20px;
box-shadow: 0 0px 9px 2px #ccc;
}
.width-400{
width: 400px;
margin: auto;
padding: 20px;
margin-top: 80px;
margin-bottom: 150px;
box-shadow: 0 0px 9px 2px #ccc;
}
.width-500{
width: 500px;
margin: auto;
padding: 20px;
box-shadow: 0 0px 9px 2px #ccc;
}
#videos{
display: none;
}
canvas {
position: absolute;
top: 0;
left: 0;
}
.preprocess {
padding-right: 20px;
padding-bottom: 50px;
}
#preprocessed_images {
white-space: nowrap;
width: auto;
height: 250px;
padding: 20px;
overflow-x: scroll;
overflow-y: hidden;
box-shadow: 0 0px 9px 2px #ccc;
}
#faces_images {
white-space: nowrap;
width: auto;
height: 150px;
padding: 20px;
overflow-x: scroll;
overflow-y: hidden;
box-shadow: 0 0px 9px 2px #ccc;
}
.faces {
padding-right: 20px;
padding-bottom: 50px;
}
#heatmap_images{
white-space: nowrap;
width: auto;
height: 200px;
padding: 20px;
overflow-x: scroll;
overflow-y: hidden;
box-shadow: 0 0px 9px 2px #ccc;
margin-bottom: 20px;
}
.heat-map {
padding-right: 20px;
padding-bottom: 50px;
}
/* span.spinner-border {
display: none;
} */ |