@import "../theme/global"; @import "../theme/post"; @import "../partials/article"; @import "../partials/tags_menu"; article { @include article-styling; .options { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; .limit-options { a { color: $defForegroundColor; } .active { color: $defLinkForeground; font-weight: 600; } } .paging-options { width: 16em; display: flex; justify-content: space-evenly; } } #options-footer { justify-content: center; } .posts { .post { padding: 0.5em 0; font-size: 1.4em; .post-title-tags { .post-title { font-size: 1em; color: $posts_postTitleColor; } .post-title:hover { color: $posts_postHighlightedTitleColor; } .post-tag { font-size: 0.8em; color: $posts_postTagForegroundColor; } .post-tag:hover { color: $defLinkForeground; } } .post-info { font-size: 0.8em; .post-createdat { color: $posts_postInfoForegroundColor; } } } } } @media screen and (max-width: 1200px) { article { @include article-styling-1200px; .post { a { font-size: 1.2rem; text-decoration: none; } } } } @media screen and (max-width: 800px) { article { $side-margin: 1em; @include article-styling-800px($side-margin); } } @media screen and (max-width: 600px) { article { $padding: 1em; @include article-styling-600px($padding); } }