/* * Copyright (C) 2023, Ferass El Hafidi * * SPDX-License-Identifier: GPL-2.0+ */ body { font-family: sans-serif; max-width: 120ch; margin: 0 auto; line-height: 1.5; padding: 5px; } /* Flexbox magic */ header, header div.header_title, header ul.header_links { display: flex; justify-content: space-between; align-items: center; } /* Header links */ header ul.header_links { list-style: none; } header ul li a.header_link { margin: 10px; } /* Header text */ header div.header_title h1 { margin: 1px 9px; border: none; } header div.header_title h1 small { font-size: 11pt; } /* Header image */ header div.header_title img { width: 50px; height: 50px; } /* Misc... */ code { font-size: 11.5pt; background: #ddd; padding: 0.5pt; border: 1px solid #ccc; border-radius: 3px; } hr { border: none; } h1, h2, h3, h4, h5, hr { border-bottom: 2px solid #ddd; } /* Make it responsive */ @media (max-width: 760px) { header, header ul.header_links { flex-direction: column; } header ul.header_links { list-style: disc; } header div.header_title { justify-content: normal; } } @media (max-width: 450px) { header div.header_title h1 small { display: block; } header div.header_title img { width: 70px; height: 70px; } }