123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- * Personal website of UltrasonicMadness
- * Copyright (C) 2017-2018, 2021-2023 UltrasonicMadness
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- nav
- {
- display:flex;
- flex:1;
- flex-flow:column;
- font-size:12pt;
- }
- nav a
- {
- padding:1em;
- text-decoration:none;
- flex:0;
- line-height:1em;
- text-align:left;
- }
- /* Since the logo always has a black background, this setting applies to the whole website. */
- #main-logo-container
- {
- background-color:#000000;
- display:flex;
- }
- #main-logo-container img
- {
- display:block;
-
- /* Center image */
- margin:auto;
-
- /* If the logo cannot load, display the text like this. */
- font-size:32pt;
- font-family:monospace;
- text-align:center;
- color:#ffffff;
- width:75%;
- }
|