/* * ___ * /\_ \ * _____ ___ ___\//\ \ __ * /\ '__`\ / __`\ / __`\\ \ \ /'__`\ * \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/ * \ \ ,__/\ \____/\ \____//\____\ \____\ * \ \ \/ \/___/ \/___/ \/____/\/____/ * \ \_\ * \/_/ * * Designed, built, and released under MIT license by @mdo. Learn more at * https://github.com/poole/poole. */ /* * Contents * * Body resets * Custom type * Messages * Container * Masthead * Posts and pages * Pagination * Reverse layout * Themes */ /* * Body resets * * Update the foundational and global aspects of the page. */ html { font-family: Amiri, "Traditional Arabic", "PT Sans", Helvetica, Arial, sans-serif; } /* Misc */ hr { position: fixed; } /* Quotes */ blockquote { border-left: .25rem solid #e5e5e5; } } @media (min-width: 30em) { blockquote { padding-right: 5rem; padding-left: 1.25rem; } } /* * Container * * Center the page content. */ .container { padding-right: 1rem; padding-left: 1rem; margin-right: auto; margin-left: auto; } /* * Posts and pages * * Each post is wrapped in `.post` and is used on default and post layouts. Each * page is wrapped in `.page` and is only used on the page layout. */ /* Related posts */ .related-posts { padding-left: 0; } /* * Pagination * * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when * there are no more previous or next posts to show. */ .pagination { overflow: hidden; /* clearfix */ margin-right: -1rem; margin-left: -1rem; font-family: Amiri, "Traditional Arabic", "PT Sans", Helvetica, Arial, sans-serif; text-align: center; } /* Pagination items can be `span`s or `a`s */ @media (min-width: 30em) { .pagination-item { float: left; width: 50%; } .pagination-item:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination-item:last-child { margin-left: -1px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; } }