2018-12-12 06:04:47 +00:00
|
|
|
#logo-container {
|
|
|
|
height: 64px;
|
2017-04-14 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
2018-12-12 06:04:47 +00:00
|
|
|
#logo-container img {
|
|
|
|
width: 40px;
|
2017-04-14 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
2018-12-12 06:04:47 +00:00
|
|
|
.exercise-info-container {
|
|
|
|
width: 560px;
|
|
|
|
min-height: 100px;
|
|
|
|
margin: 20px auto 0;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px 15px;
|
2018-12-13 01:18:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#point-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Selector point */
|
|
|
|
#point-container .point {
|
|
|
|
position: absolute;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
cursor: pointer;
|
2018-12-13 01:55:35 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#point-container.start .point {
|
|
|
|
display: inherit;
|
2018-12-15 05:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#point-container.start .point.stop, #point-container.start .point.selected {
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#point-container.start .point div {
|
|
|
|
display: none;
|
|
|
|
position: relative;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin: -7px 0 0 -7px;
|
|
|
|
z-index: 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 4px solid #1565C0
|
|
|
|
}
|
|
|
|
|
|
|
|
#point-container.start .point.selected div {
|
|
|
|
display: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#exercises-container div {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#exercises-container div.selected {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2018-12-15 06:45:24 +00:00
|
|
|
|
|
|
|
.favorite img {
|
|
|
|
height: 30px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|