2020-11-27 14:30:52 -06:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
2018-01-26 13:27:57 -06:00
|
|
|
.activity-item:before {
|
2011-08-23 09:34:28 -05:00
|
|
|
content: "";
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
float: left;
|
2012-06-12 17:36:49 -05:00
|
|
|
background: url('../images/fugue-sprite.png') no-repeat;
|
|
|
|
|
background-position: -224px -160px;
|
2011-08-23 09:34:28 -05:00
|
|
|
margin: 0 6px 2px 0;
|
|
|
|
|
}
|
2018-01-26 13:27:57 -06:00
|
|
|
.wp-strava-activity-container {
|
2011-08-23 09:34:28 -05:00
|
|
|
display: table;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
2020-11-02 10:53:53 -06:00
|
|
|
.activity-details-table tr td {
|
2011-08-23 09:34:28 -05:00
|
|
|
padding: 5px;
|
|
|
|
|
}
|
2020-11-02 10:53:53 -06:00
|
|
|
.activity-details-table th {
|
2011-08-23 09:34:28 -05:00
|
|
|
padding: 5px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
}
|
2020-11-02 10:53:53 -06:00
|
|
|
.activity-details-table td {
|
2011-08-23 09:34:28 -05:00
|
|
|
text-align: center;
|
|
|
|
|
border: 1px solid #e7e7e7;
|
|
|
|
|
}
|
2018-01-26 13:27:57 -06:00
|
|
|
.activity-details-table-info {
|
2011-08-23 09:34:28 -05:00
|
|
|
font-size: 1.2em;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
|
|
|
|
|
}
|
2018-01-26 13:27:57 -06:00
|
|
|
.activity-details-table-units {
|
2011-08-23 09:34:28 -05:00
|
|
|
font-size: 0.8em;
|
|
|
|
|
}
|
2020-11-02 15:50:00 -06:00
|
|
|
|
|
|
|
|
/* Responsive Tables */
|
|
|
|
|
@media
|
|
|
|
|
only screen and (max-width: 760px),
|
|
|
|
|
(min-device-width: 768px) and (max-device-width: 1024px) {
|
|
|
|
|
|
|
|
|
|
/* Force table to not be like tables anymore */
|
|
|
|
|
table, thead, tbody, th, td, tr {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide table headers (but not display: none;, for accessibility) */
|
|
|
|
|
thead tr {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -9999px;
|
|
|
|
|
left: -9999px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td {
|
|
|
|
|
/* Behave like a "row" */
|
|
|
|
|
border: none;
|
2020-11-02 16:43:15 -06:00
|
|
|
border-bottom: 1px solid #e7e7e7;
|
2020-11-02 15:50:00 -06:00
|
|
|
position: relative;
|
|
|
|
|
padding-left: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td:before {
|
|
|
|
|
/* Now like a table header */
|
|
|
|
|
position: absolute;
|
|
|
|
|
/* Top/left values mimic padding */
|
|
|
|
|
top: 5px;
|
|
|
|
|
left: 5px;
|
|
|
|
|
width: 45%;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
white-space: nowrap;
|
2020-11-03 13:36:22 -06:00
|
|
|
content: attr(data-label);
|
2020-11-02 15:50:00 -06:00
|
|
|
}
|
|
|
|
|
|
2020-11-27 11:17:53 -06:00
|
|
|
.activity-details-table td {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-02 15:50:00 -06:00
|
|
|
.activity-details-table-info, .activity-details-table-units {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
}
|