2019-01-06 21:44:38 +01:00
|
|
|
html {
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2018-05-17 13:33:44 +02:00
|
|
|
background-color: #eaeaea;
|
2019-01-06 21:44:38 +01:00
|
|
|
margin: 0;
|
2018-05-17 13:33:44 +02:00
|
|
|
min-height: 100vh;
|
2019-01-06 21:44:38 +01:00
|
|
|
padding-bottom: 50px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App {
|
|
|
|
padding-bottom: 20px;
|
2018-01-01 11:10:39 +01:00
|
|
|
text-align: center;
|
2017-12-17 09:46:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.App-logo {
|
|
|
|
animation: App-logo-spin infinite 20s linear;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-header {
|
|
|
|
background-color: #222;
|
|
|
|
height: 150px;
|
|
|
|
padding: 20px;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-title {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-intro {
|
|
|
|
font-size: large;
|
|
|
|
}
|
|
|
|
|
2018-01-01 21:54:03 +01:00
|
|
|
.App-nav-profile-img {
|
2020-05-02 18:00:17 +02:00
|
|
|
max-width: 32px;
|
|
|
|
max-height: 32px;
|
2018-05-10 13:11:44 +02:00
|
|
|
border-radius: 50%;
|
2018-01-01 21:54:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.App-profile-img-small {
|
2018-05-10 13:11:44 +02:00
|
|
|
max-width: 150px;
|
|
|
|
max-height: 150px;
|
|
|
|
border-radius: 50%;
|
2018-01-01 21:54:03 +01:00
|
|
|
}
|
|
|
|
|
2017-12-17 09:46:40 +01:00
|
|
|
@keyframes App-logo-spin {
|
|
|
|
from { transform: rotate(0deg); }
|
|
|
|
to { transform: rotate(360deg); }
|
|
|
|
}
|
2017-12-31 18:43:24 +01:00
|
|
|
|
2018-06-07 12:58:23 +02:00
|
|
|
a {
|
|
|
|
color: #40578a;
|
|
|
|
}
|
|
|
|
|
2018-06-14 13:39:18 +02:00
|
|
|
input[type="text"], textarea {
|
2018-01-01 16:59:46 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-06-13 17:52:38 +02:00
|
|
|
label {
|
|
|
|
width: 100%;
|
2017-12-31 18:43:24 +01:00
|
|
|
}
|
2018-05-01 19:29:21 +02:00
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.add-workout {
|
2018-05-01 19:29:21 +02:00
|
|
|
margin-top: 50px;
|
|
|
|
}
|
2018-05-03 14:07:31 +02:00
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.add-workout-radio {
|
2018-06-15 09:36:14 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2018-05-16 23:52:55 +02:00
|
|
|
.admin-img {
|
|
|
|
max-width: 35px;
|
|
|
|
max-height: 35px;
|
|
|
|
}
|
|
|
|
|
2019-09-18 13:58:20 +02:00
|
|
|
.admin-items {
|
2019-09-23 14:09:26 +02:00
|
|
|
list-style-type: square;
|
2019-09-18 13:58:20 +02:00
|
|
|
}
|
|
|
|
|
2019-09-22 23:03:56 +02:00
|
|
|
.admin-message {
|
|
|
|
color: #7c7c7d;
|
2019-09-23 14:09:26 +02:00
|
|
|
font-size: 0.9em;
|
|
|
|
font-style: italic;
|
|
|
|
margin-left: 10px;
|
2019-09-22 23:03:56 +02:00
|
|
|
}
|
|
|
|
|
2019-11-13 20:15:50 +01:00
|
|
|
.app-config-form label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-05-01 18:06:05 +02:00
|
|
|
.btn {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2018-06-13 17:52:38 +02:00
|
|
|
.card {
|
|
|
|
text-align: left;
|
2018-05-08 18:20:41 +02:00
|
|
|
}
|
2018-05-10 13:11:44 +02:00
|
|
|
|
2018-05-28 17:07:08 +02:00
|
|
|
.chart {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.chart-workouts {
|
2019-01-04 13:42:52 +01:00
|
|
|
margin-left: 60px;
|
|
|
|
}
|
|
|
|
|
2019-01-05 13:02:55 +01:00
|
|
|
.chart-arrows {
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
|
2019-01-04 11:51:06 +01:00
|
|
|
.chart-filters {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2018-05-28 17:49:10 +02:00
|
|
|
.chart-info {
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2018-05-28 17:07:08 +02:00
|
|
|
.chart-radio {
|
|
|
|
display: flex;
|
2018-06-07 12:42:30 +02:00
|
|
|
font-size: 0.9em;
|
2018-05-28 17:07:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.chart-radio label {
|
2019-01-05 13:02:55 +01:00
|
|
|
/* display: flex; */
|
2018-05-28 17:07:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.chart-radio input {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2019-01-03 11:16:46 +01:00
|
|
|
.chart-stats {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
2018-05-28 17:49:10 +02:00
|
|
|
.chart-title {
|
|
|
|
font-size: 1.1em;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.col-workout-logo{
|
2018-06-13 17:52:38 +02:00
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
2018-05-10 13:11:44 +02:00
|
|
|
.custom-modal {
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 5px;
|
|
|
|
max-width: 500px;
|
|
|
|
margin: 20% auto;
|
2018-05-17 13:33:44 +02:00
|
|
|
z-index: 1250;
|
2018-05-10 13:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.custom-modal-backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: rgba(0,0,0,0.3);
|
|
|
|
padding: 50px;
|
2018-05-17 13:33:44 +02:00
|
|
|
z-index: 1240;
|
2018-05-10 13:11:44 +02:00
|
|
|
}
|
2018-05-10 16:56:45 +02:00
|
|
|
|
|
|
|
.custom-fa {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2018-07-29 11:50:45 +02:00
|
|
|
.custom-fa-small {
|
|
|
|
font-size: 0.8em;
|
2020-01-28 19:34:10 +01:00
|
|
|
margin-left: -0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
|
|
.custom-fa-small {
|
|
|
|
font-size: 0.6em;
|
|
|
|
}
|
2018-07-29 11:50:45 +02:00
|
|
|
}
|
|
|
|
|
2018-07-29 14:55:57 +02:00
|
|
|
.custom-tooltip {
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid lightgrey;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-tooltip p {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-tooltip-label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-05-01 18:06:05 +02:00
|
|
|
.dashboard {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-06-07 17:06:41 +02:00
|
|
|
.dashboard, .history {
|
2018-05-30 17:48:58 +02:00
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
2019-09-08 15:16:27 +02:00
|
|
|
.dropdown-wrapper {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-list {
|
2019-09-08 16:53:23 +02:00
|
|
|
background-color: #f8f9fa;
|
2019-09-08 15:16:27 +02:00
|
|
|
padding: 5px 0;
|
|
|
|
position: absolute;
|
2019-09-08 16:53:23 +02:00
|
|
|
text-align: left;
|
2019-09-08 15:16:27 +02:00
|
|
|
z-index: 10;
|
|
|
|
}
|
2019-09-08 16:53:23 +02:00
|
|
|
|
2019-09-08 15:16:27 +02:00
|
|
|
.dropdown-item {
|
|
|
|
cursor: default;
|
|
|
|
font-size: 0.9em;
|
2019-09-08 16:53:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item-selected {
|
2019-12-28 22:46:02 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item-selected::after {
|
|
|
|
content: " ✔";
|
2019-09-08 15:16:27 +02:00
|
|
|
}
|
|
|
|
|
2020-05-01 18:06:05 +02:00
|
|
|
.error-message {
|
2021-02-20 17:02:24 +01:00
|
|
|
margin: 10px 0;
|
2020-05-01 18:06:05 +02:00
|
|
|
}
|
|
|
|
|
2020-05-01 17:02:50 +02:00
|
|
|
.fa-as-link {
|
|
|
|
cursor:pointer;
|
|
|
|
color: #40578a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-as-link:hover {
|
|
|
|
color: #0056b3;
|
|
|
|
}
|
|
|
|
|
2019-08-31 19:15:37 +02:00
|
|
|
.fa-question-circle {
|
|
|
|
color: #6c757d;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
2018-06-13 17:52:38 +02:00
|
|
|
.fa-trophy {
|
|
|
|
color: goldenrod;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-color {
|
|
|
|
color: #405976;
|
2018-05-16 23:52:55 +02:00
|
|
|
}
|
|
|
|
|
2019-01-06 21:44:38 +01:00
|
|
|
.footer {
|
|
|
|
background-color: #f8f9fa;
|
|
|
|
bottom: 0;
|
|
|
|
color: #8b8c8c;
|
|
|
|
font-size: 0.9em;
|
|
|
|
height: 50px;
|
|
|
|
line-height: 50px;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-05-02 09:52:42 +02:00
|
|
|
/* Chrome, Safari, Edge, Opera */
|
|
|
|
.form-disabled .form-group input::-webkit-outer-spin-button,
|
|
|
|
.form-disabled .form-group input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Firefox */
|
|
|
|
.form-disabled .form-group input[type=number] {
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-disabled .form-group input{
|
|
|
|
border: none;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-07 11:47:51 +01:00
|
|
|
.gpx-file {
|
|
|
|
height: inherit;
|
|
|
|
}
|
|
|
|
|
2018-06-05 19:37:10 +02:00
|
|
|
.huge {
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
|
|
|
|
2019-09-08 15:16:27 +02:00
|
|
|
.i18n-flag svg {
|
|
|
|
height: 100%;
|
|
|
|
opacity: .9;
|
|
|
|
width: 15px;
|
|
|
|
}
|
|
|
|
|
2018-05-17 15:13:53 +02:00
|
|
|
.inactive-link {
|
|
|
|
color: lightgrey;
|
|
|
|
}
|
|
|
|
|
2018-06-13 17:52:38 +02:00
|
|
|
.leaflet-container {
|
|
|
|
height: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loader {
|
|
|
|
animation: spin 2s linear infinite;
|
2020-01-31 11:03:03 +01:00
|
|
|
border: 8px solid #f3f3f3;
|
|
|
|
border-top: 8px solid #3498db;
|
2018-06-13 17:52:38 +02:00
|
|
|
border-radius: 50%;
|
2020-01-31 11:03:03 +01:00
|
|
|
height: 60px;
|
2018-06-13 17:52:38 +02:00
|
|
|
margin-left: 41%;
|
2020-01-31 11:03:03 +01:00
|
|
|
width: 60px;
|
2018-06-13 17:52:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
100% { transform: rotate(360deg); }
|
|
|
|
}
|
|
|
|
|
|
|
|
.map-attribution {
|
2020-01-30 18:49:40 +01:00
|
|
|
bottom: 0;
|
2018-06-13 17:52:38 +02:00
|
|
|
font-size: 11px;
|
2020-01-30 18:49:40 +01:00
|
|
|
position: absolute;
|
2018-06-13 17:52:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.map-attribution-text {
|
|
|
|
background-color: rgba(255, 255, 255, .5);
|
|
|
|
padding-left: 2px;
|
|
|
|
padding-right: 2px;
|
|
|
|
}
|
|
|
|
|
2020-05-02 18:00:17 +02:00
|
|
|
.no-picture {
|
2020-05-02 19:32:38 +02:00
|
|
|
color: #405976;
|
2020-05-02 18:00:17 +02:00
|
|
|
}
|
|
|
|
|
2018-06-13 17:52:38 +02:00
|
|
|
.page-title {
|
|
|
|
font-size: 2em;
|
|
|
|
margin: 1em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-05-17 18:20:15 +02:00
|
|
|
.password-forget {
|
|
|
|
margin: 10px;
|
|
|
|
font-size: .9em;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2018-06-13 17:52:38 +02:00
|
|
|
.radioLabel {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-05-20 13:12:35 +02:00
|
|
|
.record-logo {
|
|
|
|
margin-right: 5px;
|
|
|
|
max-width: 25px;
|
|
|
|
max-height: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.record-table table, .record-table th, .record-table td{
|
|
|
|
font-size: 0.9em;
|
|
|
|
padding: 0.1em;
|
|
|
|
}
|
|
|
|
|
2018-06-13 17:52:38 +02:00
|
|
|
.sport-img {
|
|
|
|
max-width: 35px;
|
|
|
|
max-height: 35px;
|
|
|
|
}
|
|
|
|
|
2018-05-16 23:52:55 +02:00
|
|
|
.sport-img-medium {
|
|
|
|
max-width: 45px;
|
|
|
|
max-height: 45px;
|
|
|
|
}
|
2018-06-11 15:10:18 +02:00
|
|
|
|
2019-09-23 20:01:11 +02:00
|
|
|
.stats-disabled {
|
|
|
|
opacity: 0.3;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2020-05-17 18:20:15 +02:00
|
|
|
.svg-icon {
|
|
|
|
fill: #405976;
|
|
|
|
height: 70px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
|
2019-07-07 12:56:09 +02:00
|
|
|
.time-frames {
|
|
|
|
align-items: center;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-frame label {
|
|
|
|
float: left;
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-frame label input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-frame label span {
|
|
|
|
border: #a9a9a9 solid 1px;
|
|
|
|
border-radius: 9%;
|
|
|
|
color: #7b7b7b;
|
|
|
|
display: block;
|
|
|
|
font-size: 0.9em;
|
2019-09-16 10:26:02 +02:00
|
|
|
padding: 2px 6px;
|
2019-07-07 12:56:09 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time-frame input:checked + span {
|
|
|
|
background-color: #a9a9a9;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
2020-01-13 14:54:04 +01:00
|
|
|
.timezone-custom {
|
|
|
|
font-size: .9em !important;
|
|
|
|
height: inherit !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timezone-custom input {
|
|
|
|
border: 0 !important;
|
|
|
|
padding: 5px 1px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timezone-custom ul {
|
|
|
|
background: white;
|
2019-01-07 11:47:51 +01:00
|
|
|
}
|
|
|
|
|
2018-06-11 15:10:18 +02:00
|
|
|
.timezone-picker {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timezone-picker-textfield {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
2018-05-10 16:56:45 +02:00
|
|
|
.unlink {
|
|
|
|
color: black;
|
|
|
|
}
|
2018-05-29 20:08:34 +02:00
|
|
|
|
2020-05-02 18:00:17 +02:00
|
|
|
.user-filters {
|
|
|
|
font-size: 0.9em;
|
2020-05-02 19:32:38 +02:00
|
|
|
margin-bottom: 10px;
|
2020-05-02 18:42:44 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 19:32:38 +02:00
|
|
|
.user-label {
|
|
|
|
font-weight: bold;
|
2020-05-02 18:42:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-13 17:18:12 +02:00
|
|
|
.weather-img {
|
|
|
|
max-width: 35px;
|
|
|
|
max-height: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weather-img-small {
|
|
|
|
max-width: 20px;
|
|
|
|
max-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weather-table {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.weather-table table, .weather-table th, .weather-table td{
|
|
|
|
font-size: 0.9em;
|
|
|
|
padding: 0.1em;
|
|
|
|
}
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.workouts-result {
|
|
|
|
font-size: 0.85em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-card {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-details {
|
|
|
|
font-size: 0.95em;
|
|
|
|
}
|
|
|
|
.workout-date {
|
|
|
|
font-size: 0.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-filter {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-filter .col-2, .col-5{
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-label {
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #666
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-logo {
|
|
|
|
margin: 0 5px;
|
|
|
|
max-width: 20px;
|
|
|
|
max-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-map {
|
|
|
|
background-color: #eaeaea;
|
|
|
|
height: 225px;
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-no-map {
|
|
|
|
background-color: #eaeaea;
|
|
|
|
color: #666666;
|
|
|
|
font-style: italic;
|
|
|
|
height: 400px;
|
|
|
|
line-height: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-notes, .actvitiy-segments {
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-style: italic;
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-page {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-segments-list {
|
|
|
|
list-style: square;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-sport {
|
|
|
|
margin-right: 1px;
|
|
|
|
max-width: 18px;
|
|
|
|
max-height: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-title img, .workout-title .map-attribution-list {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-title img {
|
|
|
|
border: 1px solid lightgrey;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
display: none;
|
|
|
|
margin-left: 20px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-title .map-attribution-list {
|
|
|
|
display: none;
|
|
|
|
font-size: 11px;
|
|
|
|
margin-left: 20px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workout-title:hover img, .workout-title:hover .map-attribution-list {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-05-02 19:32:38 +02:00
|
|
|
/* responsive table */
|
|
|
|
/* adapted from https://uglyduck.ca/making-tables-responsive-with-minimal-css/ */
|
2020-05-03 11:30:40 +02:00
|
|
|
.heading-span,
|
|
|
|
.heading-span-absolute {
|
2020-05-02 19:32:38 +02:00
|
|
|
background: #eee;
|
|
|
|
color: dimgrey;
|
|
|
|
display: none;
|
|
|
|
font-size: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 5px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2020-05-03 11:30:40 +02:00
|
|
|
.heading-span-absolute {
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-05-02 19:32:38 +02:00
|
|
|
@media(max-width: 1024px) {
|
|
|
|
table thead {
|
|
|
|
left: -9999px;
|
|
|
|
position: absolute;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
table tr {
|
|
|
|
border-bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
table td {
|
|
|
|
border: 1px solid lightgrey;
|
|
|
|
margin: 0 -1px -1px 0;
|
2020-05-03 11:30:40 +02:00
|
|
|
padding-top: 30px !important;
|
2020-05-02 19:32:38 +02:00
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
width: 50%;
|
|
|
|
}
|
2020-05-03 11:30:40 +02:00
|
|
|
.record-tr {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.record-td {
|
|
|
|
padding-top: 0 !important;
|
|
|
|
}
|
|
|
|
.heading-span, .heading-span-absolute {
|
2020-05-02 19:32:38 +02:00
|
|
|
display: block;
|
|
|
|
}
|
2020-05-01 12:12:48 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 22:39:50 +02:00
|
|
|
/* calendar */
|
|
|
|
:root {
|
|
|
|
--main-color: #1a8fff;
|
|
|
|
--text-color: #777;
|
|
|
|
--text-color-light: #ccc;
|
|
|
|
--border-color: #eee;
|
|
|
|
--bg-color: #f9f9f9;
|
|
|
|
--neutral-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .col-start {
|
|
|
|
justify-content: flex-start;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .col-center {
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .col-end {
|
|
|
|
justify-content: flex-end;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
background: var(--neutral-color);
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .header {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 700;
|
|
|
|
/*font-size: 115%;*/
|
|
|
|
padding: 0.5em 0;
|
|
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .header .icon {
|
|
|
|
cursor: pointer;
|
|
|
|
transition: .15s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .header .icon:hover {
|
|
|
|
transform: scale(1.75);
|
|
|
|
transition: .25s ease-out;
|
|
|
|
color: var(--main-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .header .icon:first-of-type {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .header .icon:last-of-type {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .days {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 400;
|
|
|
|
color: var(--text-color-light);
|
|
|
|
font-size: 70%;
|
|
|
|
padding: .75em 0;
|
|
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .cell {
|
|
|
|
position: relative;
|
|
|
|
height: 3em;
|
|
|
|
border-right: 1px solid var(--border-color);
|
|
|
|
background: var(--neutral-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .cell:hover {
|
|
|
|
background: var(--bg-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .selected {
|
|
|
|
border-left: 10px solid transparent;
|
|
|
|
border-image: linear-gradient(45deg, #1a8fff 0%,#53cbf1 40%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .row {
|
|
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .row:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .cell:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .cell .number {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 82.5%;
|
|
|
|
line-height: 1;
|
|
|
|
top: .75em;
|
|
|
|
right: .75em;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .disabled {
|
|
|
|
color: var(--text-color-light);
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .col {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: calc(100%/7);
|
|
|
|
width: calc(100%/7);
|
|
|
|
}
|
2019-12-29 10:42:01 +01:00
|
|
|
|
|
|
|
.calendar .body .img-disabled {
|
|
|
|
opacity: .4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar .body .weekend {
|
|
|
|
background: #f5f5f5;
|
|
|
|
}
|
2020-01-28 19:34:10 +01:00
|
|
|
|
2020-07-15 14:07:25 +02:00
|
|
|
.calendar .body .today {
|
|
|
|
background: #eff1f3;
|
|
|
|
}
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.calendar-workout,
|
2020-01-28 19:34:10 +01:00
|
|
|
.calendar-more {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendar-more {
|
|
|
|
color: #405976;
|
|
|
|
font-size: .7em;
|
|
|
|
margin-left: 0.3em;
|
|
|
|
}
|
|
|
|
|
2020-01-28 20:24:16 +01:00
|
|
|
.calendar-display-more {
|
|
|
|
background: whitesmoke;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 10px 15px;
|
|
|
|
position: absolute;
|
|
|
|
min-width: 52px;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.calendar-workout-more {
|
2020-01-28 20:24:16 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-01-28 19:34:10 +01:00
|
|
|
@media only screen and (max-width: 992px) {
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.calendar-workout:nth-child(-n+2),
|
|
|
|
.calendar-workout:nth-child(n+3) ~ .calendar-more,
|
|
|
|
.calendar-workout-more:nth-child(n+3) {
|
2020-01-28 19:34:10 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.calendar-workout:nth-child(-n+4),
|
|
|
|
.calendar-workout:nth-child(n+5) ~ .calendar-more,
|
|
|
|
.calendar-workout-more:nth-child(n+5) {
|
2020-01-28 20:24:16 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-01-28 19:34:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
|
2021-01-10 11:39:48 +01:00
|
|
|
.calendar-workout:nth-child(-n+6),
|
|
|
|
.calendar-workout:nth-child(n+7) ~ .calendar-more,
|
|
|
|
.calendar-workout-more:nth-child(n+7) {
|
2020-01-28 19:34:10 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|