|
|
Line 136: |
Line 136: |
| color: #292828!important; | | color: #292828!important; |
| } | | } |
| .article-metadata {
| |
| display: grid;
| |
| grid-template-columns: repeat(3, 1fr);
| |
| gap: 2mm;
| |
| margin: 0!important;
| |
| padding: 0!important;
| |
|
| |
|
| border-bottom: none;
| | /* Reset margins & paddings inside metadata */ |
| background-image: linear-gradient(#000, #000);
| | .article-metadata, |
| background-repeat: no-repeat;
| | .article-metadata * { |
| background-position: 0 100%;
| | margin: 0 !important; |
| background-size: 100% 0.5px;
| | padding: 0 !important; |
| | border: none; |
| | background: none; |
| } | | } |
| .article-metadata-column { | | .article-metadata { |
| margin-bottom: 0!important;
| | display: grid; |
| padding-bottom: 0!important;
| | grid-template-columns: repeat(3, 1fr); |
| }
| | gap: 2mm; /* spacing between columns */ |
| | |
| .article-metadata-column > .article-metadata-label {
| |
| margin-top: 3px!important;
| |
| padding-top: 0!important;
| |
| color: red;
| |
| } | | } |
|
| |
|
| .article-metadata-column > .article-metadata-value { | | .article-metadata-label { |
| color: green;
| | font-size: 12px; |
| margin-bottom: 3px!important;
| | text-transform: uppercase; |
| padding-bottom: 3px!important;
| | letter-spacing: 0.3px; |
| } | | } |
|
| |
|
| .article-metadata-value a { | | .article-metadata-value { |
| color: green;
| | font-size: 12px; |
| text-decoration: none;
| |
| margin-bottom: 3px!important;
| |
| padding-bottom: 3px!important;
| |
| }
| |
| | |
| .article-metadata-label {
| |
| text-transform: uppercase;
| |
| font-size: 14px;
| |
| line-height: 18px;
| |
| letter-spacing: 0.2px;
| |
| margin-top: 0!important;
| |
| margin-bottom: 0!important;
| |
| padding-top: 0!important;
| |
| padding-bottom: 0!important;
| |
| }
| |
| .article-metadata-value {
| |
| text-transform: capitalize;
| |
| font-size: 14px;
| |
| line-height: 16px;
| |
| letter-spacing: 0.4px;
| |
| margin-top: 0!important;
| |
| padding-top: 0!important;
| |
| } | | } |
|
| |
|