menu.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Personal website of UltrasonicMadness
  3. * Copyright (C) 2018 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. }
  24. nav a
  25. {
  26. padding:1em;
  27. text-decoration:none;
  28. }
  29. /* Since the logo always has a black background, this setting applies to the whole website. */
  30. #main-logo-container
  31. {
  32. background-color:#000000;
  33. display:flex;
  34. flex:0;
  35. }
  36. #main-logo-container a {
  37. width:100%;
  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. }