Files

105 lines
1.9 KiB
CSS
Raw Permalink Normal View History

2020-11-27 14:30:52 -06:00
@charset "UTF-8";
.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;
}
2022-08-26 11:02:14 -05:00
.wp-strava-activity-container {
2011-08-23 09:34:28 -05:00
display: table;
margin: 0 auto;
}
2022-08-26 11:02:14 -05:00
2022-11-25 13:18:02 -06:00
.wp-strava-img {
width: 100%;
}
.activity-details-table {
padding-bottom: 0.5em;
}
2020-11-02 10:53:53 -06:00
.activity-details-table tr td {
2022-11-25 13:18:02 -06:00
padding: 0.25em;
2011-08-23 09:34:28 -05:00
}
2022-08-26 11:02:14 -05:00
2020-11-02 10:53:53 -06:00
.activity-details-table th {
2022-11-25 13:18:02 -06:00
padding: 0.25em;
2011-08-23 09:34:28 -05:00
text-align: center;
font-size: 0.8em;
}
2022-08-26 11:02:14 -05:00
.activity-details-table td:before {
position: relative;
}
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;
}
2022-08-26 11:02:14 -05: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);
}
2022-08-26 11:02:14 -05: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 */
.activity-details-table table,
.activity-details-table thead,
.activity-details-table tbody,
.activity-details-table th,
.activity-details-table td,
.activity-details-table tr {
2020-11-02 15:50:00 -06:00
display: block;
}
/* Hide table headers (but not display: none;, for accessibility) */
.activity-details-table thead tr {
2020-11-02 15:50:00 -06:00
position: absolute;
top: -9999px;
left: -9999px;
}
.activity-details-table td {
2020-11-02 15:50:00 -06:00
/* 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%;
}
.activity-details-table td:before {
2020-11-02 15:50:00 -06:00
/* Now like a table header */
position: absolute;
/* Top/left values mimic padding */
top: 5px;
left: 5px;
width: 45%;
padding-right: 10px;
white-space: nowrap;
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;
}
}