public.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #body-public {
  2. /** don't apply content header padding on the base layout */
  3. /* force layout to make sure the content element's height matches its contents' height */
  4. /* public footer */
  5. }
  6. #body-public .header-right #header-primary-action a {
  7. color: var(--color-primary-text);
  8. }
  9. #body-public .header-right #header-secondary-action ul li {
  10. min-width: 270px;
  11. }
  12. #body-public .header-right #header-secondary-action #header-actions-toggle {
  13. background-color: transparent;
  14. border-color: transparent;
  15. }
  16. #body-public .header-right #header-secondary-action #header-actions-toggle:hover, #body-public .header-right #header-secondary-action #header-actions-toggle:focus, #body-public .header-right #header-secondary-action #header-actions-toggle:active {
  17. opacity: 1;
  18. }
  19. #body-public .header-right #header-secondary-action #external-share-menu-item form {
  20. display: flex;
  21. }
  22. #body-public .header-right #header-secondary-action #external-share-menu-item .hidden {
  23. display: none;
  24. }
  25. #body-public .header-right #header-secondary-action #external-share-menu-item #save-button-confirm {
  26. flex-grow: 0;
  27. }
  28. #body-public #content {
  29. min-height: calc(100% - 65px);
  30. }
  31. #body-public.layout-base #content {
  32. padding-top: 0;
  33. }
  34. #body-public .ie #content {
  35. display: inline-block;
  36. }
  37. #body-public p.info {
  38. margin: 20px auto;
  39. text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  40. -moz-user-select: none;
  41. -ms-user-select: none;
  42. user-select: none;
  43. }
  44. #body-public p.info, #body-public form fieldset legend,
  45. #body-public #datadirContent label,
  46. #body-public form fieldset .warning-info,
  47. #body-public form input[type=checkbox] + label {
  48. text-align: center;
  49. }
  50. #body-public footer {
  51. position: relative;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. height: 65px;
  56. flex-direction: column;
  57. }
  58. #body-public footer p {
  59. text-align: center;
  60. color: var(--color-text-lighter);
  61. }
  62. #body-public footer p a {
  63. color: var(--color-text-lighter);
  64. font-weight: bold;
  65. white-space: nowrap;
  66. /* increasing clickability to more than the text height */
  67. padding: 10px;
  68. margin: -10px;
  69. line-height: 200%;
  70. }
  71. /*# sourceMappingURL=public.css.map */