menu.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Personal website of UltrasonicMadness
  3. * Copyright (C) 2017-2018, 2021-2023 UltrasonicMadness
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. nav
  19. {
  20. display:flex;
  21. flex:1;
  22. flex-flow:column;
  23. font-size:12pt;
  24. }
  25. nav a
  26. {
  27. padding:1em;
  28. text-decoration:none;
  29. flex:0;
  30. line-height:1em;
  31. text-align:left;
  32. }
  33. /* Since the logo always has a black background, this setting applies to the whole website. */
  34. #main-logo-container
  35. {
  36. background-color:#000000;
  37. display:flex;
  38. }
  39. #main-logo-container img
  40. {
  41. display:block;
  42. /* Center image */
  43. margin:auto;
  44. /* If the logo cannot load, display the text like this. */
  45. font-size:32pt;
  46. font-family:monospace;
  47. text-align:center;
  48. color:#ffffff;
  49. width:75%;
  50. }